Skip to content

Commit 3b3ef09

Browse files
author
Talon-One SDK Generator
committed
update to 0.0.0
1 parent 9e2ea9b commit 3b3ef09

File tree

728 files changed

+18070
-7892
lines changed

Some content is hidden

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

728 files changed

+18070
-7892
lines changed

README.md

Lines changed: 41 additions & 5 deletions
Large diffs are not rendered by default.

api/openapi.yaml

Lines changed: 1986 additions & 1402 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'java'
44

55
group = 'one.talon'
6-
version = '12.0.0'
6+
version = '0.0.0'
77

88
buildscript {
99
repositories {
@@ -102,7 +102,7 @@ dependencies {
102102
compile "com.google.code.findbugs:jsr305:3.0.2"
103103
compile 'com.squareup.okhttp3:okhttp:3.14.7'
104104
compile 'com.squareup.okhttp3:logging-interceptor:3.14.7'
105-
compile 'com.google.code.gson:gson:2.13.0'
105+
compile 'com.google.code.gson:gson:2.8.6'
106106
compile 'io.gsonfire:gson-fire:1.8.4'
107107
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
108108
compile 'org.threeten:threetenbp:1.4.3'

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "one.talon",
44
name := "talon-one-client",
5-
version := "12.0.0",
5+
version := "0.0.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AccessLogEntry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Log of application accesses.
88
Name | Type | Description | Notes
99
------------ | ------------- | ------------- | -------------
1010
**uuid** | **String** | UUID reference of request. |
11-
**status** | **Long** | HTTP status code of response. |
11+
**status** | **Integer** | HTTP status code of response. |
1212
**method** | **String** | HTTP method of request. |
1313
**requestUri** | **String** | target URI of request |
1414
**time** | [**OffsetDateTime**](OffsetDateTime.md) | timestamp of request |

docs/Account.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**id** | **Long** | Internal ID of this entity. |
9+
**id** | **Integer** | The internal ID of this entity. |
1010
**created** | [**OffsetDateTime**](OffsetDateTime.md) | The time this entity was created. |
1111
**modified** | [**OffsetDateTime**](OffsetDateTime.md) | The time this entity was last modified. |
1212
**companyName** | **String** | |
@@ -15,14 +15,14 @@ Name | Type | Description | Notes
1515
**billingEmail** | **String** | The billing email address associated with your company account. |
1616
**planName** | **String** | The name of your booked plan. | [optional]
1717
**planExpires** | [**OffsetDateTime**](OffsetDateTime.md) | The point in time at which your current plan expires. | [optional]
18-
**applicationLimit** | **Long** | The maximum number of Applications covered by your plan. | [optional]
19-
**userLimit** | **Long** | The maximum number of Campaign Manager Users covered by your plan. | [optional]
20-
**campaignLimit** | **Long** | The maximum number of Campaigns covered by your plan. | [optional]
21-
**apiLimit** | **Long** | The maximum number of Integration API calls covered by your plan per billing period. | [optional]
22-
**applicationCount** | **Long** | The current number of Applications in your account. |
23-
**userCount** | **Long** | The current number of Campaign Manager Users in your account. |
24-
**campaignsActiveCount** | **Long** | The current number of active Campaigns in your account. |
25-
**campaignsInactiveCount** | **Long** | The current number of inactive Campaigns in your account. |
18+
**applicationLimit** | **Integer** | The maximum number of Applications covered by your plan. | [optional]
19+
**userLimit** | **Integer** | The maximum number of Campaign Manager Users covered by your plan. | [optional]
20+
**campaignLimit** | **Integer** | The maximum number of Campaigns covered by your plan. | [optional]
21+
**apiLimit** | **Integer** | The maximum number of Integration API calls covered by your plan per billing period. | [optional]
22+
**applicationCount** | **Integer** | The current number of Applications in your account. |
23+
**userCount** | **Integer** | The current number of Campaign Manager Users in your account. |
24+
**campaignsActiveCount** | **Integer** | The current number of active Campaigns in your account. |
25+
**campaignsInactiveCount** | **Integer** | The current number of inactive Campaigns in your account. |
2626
**attributes** | [**Object**](.md) | Arbitrary properties associated with this campaign. | [optional]
2727

2828

docs/AccountAdditionalCost.md

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

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**id** | **Long** | Internal ID of this entity. |
9+
**id** | **Integer** | The internal ID of this entity. |
1010
**created** | [**OffsetDateTime**](OffsetDateTime.md) | The time this entity was created. |
11-
**accountId** | **Long** | The ID of the account that owns this entity. |
11+
**accountId** | **Integer** | The ID of the account that owns this entity. |
1212
**name** | **String** | The internal name used in API requests. |
1313
**title** | **String** | The human-readable name for the additional cost that will be shown in the Campaign Manager. Like `name`, the combination of entity and title must also be unique. |
1414
**description** | **String** | A description of this additional cost. |
15-
**subscribedApplicationsIds** | **List<Long>** | A list of the IDs of the applications that are subscribed to this additional cost. | [optional]
15+
**subscribedApplicationsIds** | **List<Integer>** | A list of the IDs of the applications that are subscribed to this additional cost. | [optional]
1616
**type** | [**TypeEnum**](#TypeEnum) | The type of additional cost. Possible value: - `session`: Additional cost will be added per session. - `item`: Additional cost will be added per item. - `both`: Additional cost will be added per item and session. | [optional]
1717

1818

docs/AccountAnalytics.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**applications** | **Long** | Total number of applications in the account. |
10-
**liveApplications** | **Long** | Total number of live applications in the account. |
11-
**sandboxApplications** | **Long** | Total number of sandbox applications in the account. |
12-
**campaigns** | **Long** | Total number of campaigns in the account. |
13-
**activeCampaigns** | **Long** | Total number of active campaigns in the account. |
14-
**liveActiveCampaigns** | **Long** | Total number of active campaigns in live applications in the account. |
15-
**coupons** | **Long** | Total number of coupons in the account. |
16-
**activeCoupons** | **Long** | Total number of active coupons in the account. |
17-
**expiredCoupons** | **Long** | Total number of expired coupons in the account. |
18-
**referralCodes** | **Long** | Total number of referral codes in the account. |
19-
**activeReferralCodes** | **Long** | Total number of active referral codes in the account. |
20-
**expiredReferralCodes** | **Long** | Total number of expired referral codes in the account. |
21-
**activeRules** | **Long** | Total number of active rules in the account. |
22-
**users** | **Long** | Total number of users in the account. |
23-
**roles** | **Long** | Total number of roles in the account. |
24-
**customAttributes** | **Long** | Total number of custom attributes in the account. |
25-
**webhooks** | **Long** | Total number of webhooks in the account. |
26-
**loyaltyPrograms** | **Long** | Total number of all loyalty programs in the account. |
27-
**liveLoyaltyPrograms** | **Long** | Total number of live loyalty programs in the account. |
9+
**applications** | **Integer** | Total number of applications in the account. |
10+
**liveApplications** | **Integer** | Total number of live applications in the account. |
11+
**sandboxApplications** | **Integer** | Total number of sandbox applications in the account. |
12+
**campaigns** | **Integer** | Total number of campaigns in the account. |
13+
**activeCampaigns** | **Integer** | Total number of active campaigns in the account. |
14+
**liveActiveCampaigns** | **Integer** | Total number of active campaigns in live applications in the account. |
15+
**coupons** | **Integer** | Total number of coupons in the account. |
16+
**activeCoupons** | **Integer** | Total number of active coupons in the account. |
17+
**expiredCoupons** | **Integer** | Total number of expired coupons in the account. |
18+
**referralCodes** | **Integer** | Total number of referral codes in the account. |
19+
**activeReferralCodes** | **Integer** | Total number of active referral codes in the account. |
20+
**expiredReferralCodes** | **Integer** | Total number of expired referral codes in the account. |
21+
**activeRules** | **Integer** | Total number of active rules in the account. |
22+
**users** | **Integer** | Total number of users in the account. |
23+
**roles** | **Integer** | Total number of roles in the account. |
24+
**customAttributes** | **Integer** | Total number of custom attributes in the account. |
25+
**webhooks** | **Integer** | Total number of webhooks in the account. |
26+
**loyaltyPrograms** | **Integer** | Total number of all loyalty programs in the account. |
27+
**liveLoyaltyPrograms** | **Integer** | Total number of live loyalty programs in the account. |
2828
**lastUpdatedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The point in time when the analytics numbers were updated last. |
2929

3030

docs/AccountDashboardStatisticCampaigns.md

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

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**live** | **Long** | Number of campaigns that are active and live (across all Applications). |
10-
**endingSoon** | **Long** | Campaigns scheduled to expire sometime in the next 7 days. |
11-
**lowOnBudget** | **Long** | Campaigns with less than 10% of budget left. |
9+
**live** | **Integer** | Number of campaigns that are active and live (across all Applications). |
10+
**endingSoon** | **Integer** | Campaigns scheduled to expire sometime in the next 7 days. |
11+
**lowOnBudget** | **Integer** | Campaigns with less than 10% of budget left. |
1212

1313

1414

docs/AccountEntity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**accountId** | **Long** | The ID of the account that owns this entity. |
9+
**accountId** | **Integer** | The ID of the account that owns this entity. |
1010

1111

1212

0 commit comments

Comments
 (0)