You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- More filtering parameters when querying changes endpoint
- The full `Coupon` object is now returned as part of an integration response
- Support for new limit configuration of amount of give discount effects
Copy file name to clipboardExpand all lines: docs/Application.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,12 +10,12 @@ Name | Type | Description | Notes
10
10
**accountId** | **Integer** | The ID of the account that owns this entity. |
11
11
**name** | **String** | The name of this application. |
12
12
**description** | **String** | A longer description of the application. | [optional]
13
-
**key** | **String** | Hex key for HMAC-signing API calls as coming from this application (16 hex digits) |
14
13
**timezone** | **String** | A string containing an IANA timezone descriptor. |
15
14
**currency** | **String** | A string describing a default currency for new customer sessions. |
16
15
**caseSensitivity** | [**CaseSensitivityEnum**](#CaseSensitivityEnum) | A string indicating how should campaigns in this application deal with case sensitivity on coupon codes. | [optional]
17
16
**attributes** | [**Object**](.md) | Arbitrary properties associated with this campaign | [optional]
18
17
**limits** | [**List<LimitConfig>**](LimitConfig.md) | Default limits for campaigns created in this application | [optional]
18
+
**key** | **String** | Hex key for HMAC-signing API calls as coming from this application (16 hex digits) |
19
19
**loyaltyPrograms** | [**List<LoyaltyProgram>**](LoyaltyProgram.md) | An array containing all the loyalty programs to which this application is subscribed |
@@ -2267,8 +2267,13 @@ ManagementApi apiInstance = new ManagementApi();
2267
2267
Integer pageSize =56; // Integer | The number of items to include in this response. When omitted, the maximum value of 1000 will be used.
2268
2268
Integer skip =56; // Integer | Skips the given number of items when paging through large result sets.
2269
2269
String sort ="sort_example"; // String | The field by which results should be sorted. Sorting defaults to ascending order, prefix the field name with `-` to sort in descending order.
2270
+
Integer applicationId =56; // Integer |
2271
+
OffsetDateTime createdBefore =newOffsetDateTime(); // OffsetDateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the change creation timestamp.
2272
+
OffsetDateTime createdAfter =newOffsetDateTime(); // OffsetDateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the change creation timestamp.
2273
+
Boolean withTotalResultSize =true; // Boolean | When this flag is set, the result will include the total size of the result, across all pages. This might decrease performance on large data sets. With this flag set to true, hasMore will be be true whenever there is a next page. totalResultSize will always be zero. With this flag set to false, hasMore will always be set to false. totalResultSize will contain the total number of results for this query.
2274
+
Boolean includeOld =true; // Boolean | When this flag is set to false, the state without the change will not be returned. The default value is true.
2270
2275
try {
2271
-
InlineResponse20025 result = apiInstance.getChanges(pageSize, skip, sort);
System.err.println("Exception when calling ManagementApi#getChanges");
@@ -2283,6 +2288,11 @@ Name | Type | Description | Notes
2283
2288
**pageSize** | **Integer**| The number of items to include in this response. When omitted, the maximum value of 1000 will be used. | [optional]
2284
2289
**skip** | **Integer**| Skips the given number of items when paging through large result sets. | [optional]
2285
2290
**sort** | **String**| The field by which results should be sorted. Sorting defaults to ascending order, prefix the field name with `-` to sort in descending order. | [optional]
2291
+
**applicationId** | **Integer**| | [optional]
2292
+
**createdBefore** | **OffsetDateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the change creation timestamp. | [optional]
2293
+
**createdAfter** | **OffsetDateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the change creation timestamp. | [optional]
2294
+
**withTotalResultSize** | **Boolean**| When this flag is set, the result will include the total size of the result, across all pages. This might decrease performance on large data sets. With this flag set to true, hasMore will be be true whenever there is a next page. totalResultSize will always be zero. With this flag set to false, hasMore will always be set to false. totalResultSize will contain the total number of results for this query. | [optional]
2295
+
**includeOld** | **Boolean**| When this flag is set to false, the state without the change will not be returned. The default value is true. | [optional]
**name** | **String** | The name of this application. |
8
8
**description** | **String** | A longer description of the application. | [optional]
9
-
**key** | **String** | Hex key for HMAC-signing API calls as coming from this application (16 hex digits) |
10
9
**timezone** | **String** | A string containing an IANA timezone descriptor. |
11
10
**currency** | **String** | A string describing a default currency for new customer sessions. |
12
11
**caseSensitivity** | [**CaseSensitivityEnum**](#CaseSensitivityEnum) | A string indicating how should campaigns in this application deal with case sensitivity on coupon codes. | [optional]
13
12
**attributes** | [**Object**](.md) | Arbitrary properties associated with this campaign | [optional]
14
13
**limits** | [**List<LimitConfig>**](LimitConfig.md) | Default limits for campaigns created in this application | [optional]
14
+
**key** | **String** | Hex key for HMAC-signing API calls as coming from this application (16 hex digits) | [optional]
0 commit comments