Skip to content

Commit 49cbb53

Browse files
authored
Merge pull request #30 from talon-one/sc-42169-update-c-sdk
Quarterly sdk updates
2 parents 96d206f + c00b231 commit 49cbb53

File tree

321 files changed

+23400
-1593
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+23400
-1593
lines changed

README.md

Lines changed: 74 additions & 14 deletions
Large diffs are not rendered by default.

docs/AchievementProgress.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
**AchievementId** | **int** | The internal ID of the achievement. |
77
**Name** | **string** | The internal name of the achievement used in API requests. |
88
**Title** | **string** | The display name of the achievement in the Campaign Manager. |
9+
**Description** | **string** | The description of the achievement in the Campaign Manager. |
910
**CampaignId** | **int** | The ID of the campaign the achievement belongs to. |
1011
**Status** | **string** | The status of the achievement. |
1112
**Target** | **decimal** | The required number of actions or the transactional milestone to complete the achievement. | [optional]

docs/AdditionalCampaignProperties.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
2525
**UpdatedBy** | **string** | Name of the user who last updated this campaign if available. | [optional]
2626
**TemplateId** | **int** | The ID of the Campaign Template this Campaign was created from. | [optional]
2727
**FrontendState** | **string** | A campaign state described exactly as in the Campaign Manager. |
28+
**StoresImported** | **bool** | Indicates whether the linked stores were imported via a CSV file. |
2829

2930
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3031

docs/AnalyticsDataPoint.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# TalonOne.Model.AnalyticsDataPoint
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**Total** | **decimal** | |
7+
**Influenced** | **decimal** | |
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# TalonOne.Model.AnalyticsDataPointWithTrend
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**Value** | **decimal** | |
7+
**Trend** | **decimal** | |
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# TalonOne.Model.AnalyticsDataPointWithTrendAndInfluencedRate
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**Value** | **decimal** | |
7+
**InfluencedRate** | **decimal** | |
8+
**Trend** | **decimal** | |
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# TalonOne.Model.AnalyticsDataPointWithTrendAndUplift
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**Value** | **decimal** | |
7+
**Uplift** | **decimal** | |
8+
**Trend** | **decimal** | |
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+

docs/Application.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ Name | Type | Description | Notes
2222
**EnablePartialDiscounts** | **bool** | Indicates if this Application supports partial discounts. | [optional]
2323
**DefaultDiscountAdditionalCostPerItemScope** | **string** | The default scope to apply `setDiscountPerItem` effects on if no scope was provided with the effect. | [optional]
2424
**DefaultEvaluationGroupId** | **int** | The ID of the default campaign evaluation group to which new campaigns will be added unless a different group is selected when creating the campaign. | [optional]
25+
**DefaultCartItemFilterId** | **int** | The ID of the default Cart-Item-Filter for this application. | [optional]
26+
**EnableCampaignStateManagement** | **bool** | Indicates whether the campaign staging and revisions feature is enabled for the Application. **Important:** After this feature is enabled, it cannot be disabled. | [optional]
2527
**LoyaltyPrograms** | [**List<LoyaltyProgram>**](LoyaltyProgram.md) | An array containing all the loyalty programs to which this application is subscribed. |
2628

2729
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/ApplicationAnalyticsDataPoint.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**StartTime** | **DateTime** | The start of the aggregation time frame in UTC. | [optional]
7-
**EndTime** | **DateTime** | The end of the aggregation time frame in UTC. | [optional]
8-
**TotalRevenue** | [**ApplicationAnalyticsDataPointTotalRevenue**](ApplicationAnalyticsDataPointTotalRevenue.md) | | [optional]
9-
**SessionsCount** | [**ApplicationAnalyticsDataPointSessionsCount**](ApplicationAnalyticsDataPointSessionsCount.md) | | [optional]
10-
**AvgItemsPerSession** | [**ApplicationAnalyticsDataPointAvgItemsPerSession**](ApplicationAnalyticsDataPointAvgItemsPerSession.md) | | [optional]
11-
**AvgSessionValue** | [**ApplicationAnalyticsDataPointAvgSessionValue**](ApplicationAnalyticsDataPointAvgSessionValue.md) | | [optional]
6+
**StartTime** | **DateTime** | The start of the aggregation time frame in UTC. |
7+
**EndTime** | **DateTime** | The end of the aggregation time frame in UTC. |
8+
**TotalRevenue** | [**AnalyticsDataPoint**](AnalyticsDataPoint.md) | | [optional]
9+
**SessionsCount** | [**AnalyticsDataPoint**](AnalyticsDataPoint.md) | | [optional]
10+
**AvgItemsPerSession** | [**AnalyticsDataPoint**](AnalyticsDataPoint.md) | | [optional]
11+
**AvgSessionValue** | [**AnalyticsDataPoint**](AnalyticsDataPoint.md) | | [optional]
1212
**TotalDiscounts** | **decimal** | The total value of discounts given for cart items in influenced sessions. | [optional]
1313
**CouponsCount** | **decimal** | The number of times a coupon was successfully redeemed in influenced sessions. | [optional]
1414

docs/ApplicationCIF.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# TalonOne.Model.ApplicationCIF
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**Id** | **int** | Internal ID of this entity. |
7+
**Created** | **DateTime** | The time this entity was created. |
8+
**Name** | **string** | The name of the Application cart item filter used in API requests. |
9+
**Description** | **string** | A short description of the Application cart item filter. | [optional]
10+
**ActiveExpressionId** | **int** | The ID of the expression that the Application cart item filter uses. | [optional]
11+
**ModifiedBy** | **int** | The ID of the user who last updated the Application cart item filter. | [optional]
12+
**CreatedBy** | **int** | The ID of the user who created the Application cart item filter. | [optional]
13+
**Modified** | **DateTime** | Timestamp of the most recent update to the Application cart item filter. | [optional]
14+
**ApplicationId** | **int** | The ID of the application that owns this entity. |
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+

0 commit comments

Comments
 (0)