@@ -37,11 +37,6 @@ public class AudienceOptionsWithLookback {
37
37
@ SerializedName (SERIALIZED_NAME_FILTER_BY_EXTERNAL_IDS )
38
38
private List <String > filterByExternalIds = new ArrayList <>();
39
39
40
- public static final String SERIALIZED_NAME_BACKFILL_EVENT_DATA_DAYS = "backfillEventDataDays" ;
41
-
42
- @ SerializedName (SERIALIZED_NAME_BACKFILL_EVENT_DATA_DAYS )
43
- private BigDecimal backfillEventDataDays ;
44
-
45
40
public static final String SERIALIZED_NAME_INCLUDE_HISTORICAL_DATA = "includeHistoricalData" ;
46
41
47
42
@ SerializedName (SERIALIZED_NAME_INCLUDE_HISTORICAL_DATA )
@@ -52,6 +47,11 @@ public class AudienceOptionsWithLookback {
52
47
@ SerializedName (SERIALIZED_NAME_INCLUDE_ANONYMOUS_USERS )
53
48
private Boolean includeAnonymousUsers ;
54
49
50
+ public static final String SERIALIZED_NAME_BACKFILL_EVENT_DATA_DAYS = "backfillEventDataDays" ;
51
+
52
+ @ SerializedName (SERIALIZED_NAME_BACKFILL_EVENT_DATA_DAYS )
53
+ private BigDecimal backfillEventDataDays ;
54
+
55
55
public AudienceOptionsWithLookback () {}
56
56
57
57
public AudienceOptionsWithLookback filterByExternalIds (List <String > filterByExternalIds ) {
@@ -84,30 +84,6 @@ public void setFilterByExternalIds(List<String> filterByExternalIds) {
84
84
this .filterByExternalIds = filterByExternalIds ;
85
85
}
86
86
87
- public AudienceOptionsWithLookback backfillEventDataDays (BigDecimal backfillEventDataDays ) {
88
-
89
- this .backfillEventDataDays = backfillEventDataDays ;
90
- return this ;
91
- }
92
-
93
- /**
94
- * If specified, the value of this field indicates the number of days, specified from the date
95
- * the audience was created, that event data will be included from when determining audience
96
- * membership. If unspecified, defer to the value of `includeHistoricalData` to
97
- * determine whether historical data is either entirely included or entirely excluded when
98
- * determining audience membership.
99
- *
100
- * @return backfillEventDataDays
101
- */
102
- @ javax .annotation .Nullable
103
- public BigDecimal getBackfillEventDataDays () {
104
- return backfillEventDataDays ;
105
- }
106
-
107
- public void setBackfillEventDataDays (BigDecimal backfillEventDataDays ) {
108
- this .backfillEventDataDays = backfillEventDataDays ;
109
- }
110
-
111
87
public AudienceOptionsWithLookback includeHistoricalData (Boolean includeHistoricalData ) {
112
88
113
89
this .includeHistoricalData = includeHistoricalData ;
@@ -151,6 +127,30 @@ public void setIncludeAnonymousUsers(Boolean includeAnonymousUsers) {
151
127
this .includeAnonymousUsers = includeAnonymousUsers ;
152
128
}
153
129
130
+ public AudienceOptionsWithLookback backfillEventDataDays (BigDecimal backfillEventDataDays ) {
131
+
132
+ this .backfillEventDataDays = backfillEventDataDays ;
133
+ return this ;
134
+ }
135
+
136
+ /**
137
+ * If specified, the value of this field indicates the number of days, specified from the date
138
+ * the audience was created, that event data will be included from when determining audience
139
+ * membership. If unspecified, defer to the value of `includeHistoricalData` to
140
+ * determine whether historical data is either entirely included or entirely excluded when
141
+ * determining audience membership.
142
+ *
143
+ * @return backfillEventDataDays
144
+ */
145
+ @ javax .annotation .Nullable
146
+ public BigDecimal getBackfillEventDataDays () {
147
+ return backfillEventDataDays ;
148
+ }
149
+
150
+ public void setBackfillEventDataDays (BigDecimal backfillEventDataDays ) {
151
+ this .backfillEventDataDays = backfillEventDataDays ;
152
+ }
153
+
154
154
@ Override
155
155
public boolean equals (Object o ) {
156
156
if (this == o ) {
@@ -162,24 +162,24 @@ public boolean equals(Object o) {
162
162
AudienceOptionsWithLookback audienceOptionsWithLookback = (AudienceOptionsWithLookback ) o ;
163
163
return Objects .equals (
164
164
this .filterByExternalIds , audienceOptionsWithLookback .filterByExternalIds )
165
- && Objects .equals (
166
- this .backfillEventDataDays ,
167
- audienceOptionsWithLookback .backfillEventDataDays )
168
165
&& Objects .equals (
169
166
this .includeHistoricalData ,
170
167
audienceOptionsWithLookback .includeHistoricalData )
171
168
&& Objects .equals (
172
169
this .includeAnonymousUsers ,
173
- audienceOptionsWithLookback .includeAnonymousUsers );
170
+ audienceOptionsWithLookback .includeAnonymousUsers )
171
+ && Objects .equals (
172
+ this .backfillEventDataDays ,
173
+ audienceOptionsWithLookback .backfillEventDataDays );
174
174
}
175
175
176
176
@ Override
177
177
public int hashCode () {
178
178
return Objects .hash (
179
179
filterByExternalIds ,
180
- backfillEventDataDays ,
181
180
includeHistoricalData ,
182
- includeAnonymousUsers );
181
+ includeAnonymousUsers ,
182
+ backfillEventDataDays );
183
183
}
184
184
185
185
@ Override
@@ -189,15 +189,15 @@ public String toString() {
189
189
sb .append (" filterByExternalIds: " )
190
190
.append (toIndentedString (filterByExternalIds ))
191
191
.append ("\n " );
192
- sb .append (" backfillEventDataDays: " )
193
- .append (toIndentedString (backfillEventDataDays ))
194
- .append ("\n " );
195
192
sb .append (" includeHistoricalData: " )
196
193
.append (toIndentedString (includeHistoricalData ))
197
194
.append ("\n " );
198
195
sb .append (" includeAnonymousUsers: " )
199
196
.append (toIndentedString (includeAnonymousUsers ))
200
197
.append ("\n " );
198
+ sb .append (" backfillEventDataDays: " )
199
+ .append (toIndentedString (backfillEventDataDays ))
200
+ .append ("\n " );
201
201
sb .append ("}" );
202
202
return sb .toString ();
203
203
}
@@ -220,9 +220,9 @@ private String toIndentedString(Object o) {
220
220
// a set of all properties/fields (JSON key names)
221
221
openapiFields = new HashSet <String >();
222
222
openapiFields .add ("filterByExternalIds" );
223
- openapiFields .add ("backfillEventDataDays" );
224
223
openapiFields .add ("includeHistoricalData" );
225
224
openapiFields .add ("includeAnonymousUsers" );
225
+ openapiFields .add ("backfillEventDataDays" );
226
226
227
227
// a set of required properties/fields (JSON key names)
228
228
openapiRequiredFields = new HashSet <String >();
0 commit comments