@@ -37,11 +37,6 @@ public class AudienceOptionsWithLookback {
3737 @ SerializedName (SERIALIZED_NAME_FILTER_BY_EXTERNAL_IDS )
3838 private List <String > filterByExternalIds = new ArrayList <>();
3939
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-
4540 public static final String SERIALIZED_NAME_INCLUDE_HISTORICAL_DATA = "includeHistoricalData" ;
4641
4742 @ SerializedName (SERIALIZED_NAME_INCLUDE_HISTORICAL_DATA )
@@ -52,6 +47,11 @@ public class AudienceOptionsWithLookback {
5247 @ SerializedName (SERIALIZED_NAME_INCLUDE_ANONYMOUS_USERS )
5348 private Boolean includeAnonymousUsers ;
5449
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+
5555 public AudienceOptionsWithLookback () {}
5656
5757 public AudienceOptionsWithLookback filterByExternalIds (List <String > filterByExternalIds ) {
@@ -84,30 +84,6 @@ public void setFilterByExternalIds(List<String> filterByExternalIds) {
8484 this .filterByExternalIds = filterByExternalIds ;
8585 }
8686
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-
11187 public AudienceOptionsWithLookback includeHistoricalData (Boolean includeHistoricalData ) {
11288
11389 this .includeHistoricalData = includeHistoricalData ;
@@ -151,6 +127,30 @@ public void setIncludeAnonymousUsers(Boolean includeAnonymousUsers) {
151127 this .includeAnonymousUsers = includeAnonymousUsers ;
152128 }
153129
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+
154154 @ Override
155155 public boolean equals (Object o ) {
156156 if (this == o ) {
@@ -162,24 +162,24 @@ public boolean equals(Object o) {
162162 AudienceOptionsWithLookback audienceOptionsWithLookback = (AudienceOptionsWithLookback ) o ;
163163 return Objects .equals (
164164 this .filterByExternalIds , audienceOptionsWithLookback .filterByExternalIds )
165- && Objects .equals (
166- this .backfillEventDataDays ,
167- audienceOptionsWithLookback .backfillEventDataDays )
168165 && Objects .equals (
169166 this .includeHistoricalData ,
170167 audienceOptionsWithLookback .includeHistoricalData )
171168 && Objects .equals (
172169 this .includeAnonymousUsers ,
173- audienceOptionsWithLookback .includeAnonymousUsers );
170+ audienceOptionsWithLookback .includeAnonymousUsers )
171+ && Objects .equals (
172+ this .backfillEventDataDays ,
173+ audienceOptionsWithLookback .backfillEventDataDays );
174174 }
175175
176176 @ Override
177177 public int hashCode () {
178178 return Objects .hash (
179179 filterByExternalIds ,
180- backfillEventDataDays ,
181180 includeHistoricalData ,
182- includeAnonymousUsers );
181+ includeAnonymousUsers ,
182+ backfillEventDataDays );
183183 }
184184
185185 @ Override
@@ -189,15 +189,15 @@ public String toString() {
189189 sb .append (" filterByExternalIds: " )
190190 .append (toIndentedString (filterByExternalIds ))
191191 .append ("\n " );
192- sb .append (" backfillEventDataDays: " )
193- .append (toIndentedString (backfillEventDataDays ))
194- .append ("\n " );
195192 sb .append (" includeHistoricalData: " )
196193 .append (toIndentedString (includeHistoricalData ))
197194 .append ("\n " );
198195 sb .append (" includeAnonymousUsers: " )
199196 .append (toIndentedString (includeAnonymousUsers ))
200197 .append ("\n " );
198+ sb .append (" backfillEventDataDays: " )
199+ .append (toIndentedString (backfillEventDataDays ))
200+ .append ("\n " );
201201 sb .append ("}" );
202202 return sb .toString ();
203203 }
@@ -220,9 +220,9 @@ private String toIndentedString(Object o) {
220220 // a set of all properties/fields (JSON key names)
221221 openapiFields = new HashSet <String >();
222222 openapiFields .add ("filterByExternalIds" );
223- openapiFields .add ("backfillEventDataDays" );
224223 openapiFields .add ("includeHistoricalData" );
225224 openapiFields .add ("includeAnonymousUsers" );
225+ openapiFields .add ("backfillEventDataDays" );
226226
227227 // a set of required properties/fields (JSON key names)
228228 openapiRequiredFields = new HashSet <String >();
0 commit comments