-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5242a11
commit f55a4e5
Showing
326 changed files
with
21,933 additions
and
671 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# TalonOne::AnalyticsDataPoint | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**total** | **Float** | | | ||
**influenced** | **Float** | | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'TalonOne' | ||
|
||
instance = TalonOne::AnalyticsDataPoint.new(total: 12.0, | ||
influenced: 12.0) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# TalonOne::AnalyticsDataPointWithTrend | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**value** | **Float** | | | ||
**trend** | **Float** | | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'TalonOne' | ||
|
||
instance = TalonOne::AnalyticsDataPointWithTrend.new(value: 12.0, | ||
trend: 3.25) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# TalonOne::AnalyticsDataPointWithTrendAndInfluencedRate | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**value** | **Float** | | | ||
**influenced_rate** | **Float** | | | ||
**trend** | **Float** | | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'TalonOne' | ||
|
||
instance = TalonOne::AnalyticsDataPointWithTrendAndInfluencedRate.new(value: 12.0, | ||
influenced_rate: 12.0, | ||
trend: 3.25) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# TalonOne::AnalyticsDataPointWithTrendAndUplift | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**value** | **Float** | | | ||
**uplift** | **Float** | | | ||
**trend** | **Float** | | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'TalonOne' | ||
|
||
instance = TalonOne::AnalyticsDataPointWithTrendAndUplift.new(value: 12.0, | ||
uplift: 3.25, | ||
trend: 3.25) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# TalonOne::ApplicationCIF | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **Integer** | Internal ID of this entity. | | ||
**created** | **DateTime** | The time this entity was created. | | ||
**name** | **String** | The name of the Application cart item filter used in API requests. | | ||
**description** | **String** | A short description of the Application cart item filter. | [optional] | ||
**active_expression_id** | **Integer** | The ID of the expression that the Application cart item filter uses. | [optional] | ||
**modified_by** | **Integer** | The ID of the user who last updated the Application cart item filter. | [optional] | ||
**created_by** | **Integer** | The ID of the user who created the Application cart item filter. | [optional] | ||
**modified** | **DateTime** | Timestamp of the most recent update to the Application cart item filter. | [optional] | ||
**application_id** | **Integer** | The ID of the application that owns this entity. | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'TalonOne' | ||
|
||
instance = TalonOne::ApplicationCIF.new(id: 6, | ||
created: 2020-06-10T09:05:27.993483Z, | ||
name: Filter items by product, | ||
description: This filter allows filtering by shoes, | ||
active_expression_id: 1, | ||
modified_by: 334, | ||
created_by: 216, | ||
modified: null, | ||
application_id: 322) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# TalonOne::ApplicationCIFExpression | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **Integer** | Internal ID of this entity. | | ||
**created** | **DateTime** | The time this entity was created. | | ||
**cart_item_filter_id** | **Integer** | The ID of the Application cart item filter. | [optional] | ||
**created_by** | **Integer** | The ID of the user who created the Application cart item filter. | [optional] | ||
**expression** | **Array<Object>** | Arbitrary additional JSON data associated with the Application cart item filter. | [optional] | ||
**application_id** | **Integer** | The ID of the application that owns this entity. | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'TalonOne' | ||
|
||
instance = TalonOne::ApplicationCIFExpression.new(id: 6, | ||
created: 2020-06-10T09:05:27.993483Z, | ||
cart_item_filter_id: 216, | ||
created_by: 216, | ||
expression: {expr=[filter, [., Session, CartItems], [[Item], [catch, false, [=, [., Item, Category], Kitchen]]]]}, | ||
application_id: 322) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# TalonOne::AsyncCouponDeletionJobResponse | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **Integer** | Unique ID for this entity. Not to be confused with the Integration ID, which is set by your integration layer and used in most endpoints. | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'TalonOne' | ||
|
||
instance = TalonOne::AsyncCouponDeletionJobResponse.new(id: 6) | ||
``` | ||
|
||
|
Oops, something went wrong.