(y *SettingValue)
| 107 | } |
| 108 | |
| 109 | func (x *SettingValue) Equal(y *SettingValue) bool { |
| 110 | if x == y { |
| 111 | return true |
| 112 | } |
| 113 | if x == nil || y == nil { |
| 114 | return x == nil && y == nil |
| 115 | } |
| 116 | if !x.GetAppIm().Equal(y.GetAppIm()) { |
| 117 | return false |
| 118 | } |
| 119 | if !x.GetWorkspaceProfile().Equal(y.GetWorkspaceProfile()) { |
| 120 | return false |
| 121 | } |
| 122 | if !x.GetWorkspaceApproval().Equal(y.GetWorkspaceApproval()) { |
| 123 | return false |
| 124 | } |
| 125 | if !x.GetDataClassification().Equal(y.GetDataClassification()) { |
| 126 | return false |
| 127 | } |
| 128 | if !x.GetSemanticType().Equal(y.GetSemanticType()) { |
| 129 | return false |
| 130 | } |
| 131 | if !x.GetAi().Equal(y.GetAi()) { |
| 132 | return false |
| 133 | } |
| 134 | if !x.GetEnvironment().Equal(y.GetEnvironment()) { |
| 135 | return false |
| 136 | } |
| 137 | if !x.GetEmail().Equal(y.GetEmail()) { |
| 138 | return false |
| 139 | } |
| 140 | return true |
| 141 | } |
| 142 | |
| 143 | func (x *AppIMSetting_Slack) Equal(y *AppIMSetting_Slack) bool { |
| 144 | if x == y { |
nothing calls this directly
no test coverage detected