Skip to content

Commit fd9ac52

Browse files
author
Talon-One SDK Generator
committed
update to 25.16.1
1 parent 1d0aefc commit fd9ac52

301 files changed

Lines changed: 44381 additions & 6690 deletions

File tree

Some content is hidden

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

README.md

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

api/openapi.yaml

Lines changed: 8517 additions & 3638 deletions
Large diffs are not rendered by default.

api_integration.go

Lines changed: 735 additions & 85 deletions
Large diffs are not rendered by default.

api_management.go

Lines changed: 1693 additions & 249 deletions
Large diffs are not rendered by default.

configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ type Configuration struct {
100100
func NewConfiguration() *Configuration {
101101
cfg := &Configuration{
102102
DefaultHeader: make(map[string]string),
103-
UserAgent: "OpenAPI-Generator/25.16.0/go",
103+
UserAgent: "OpenAPI-Generator/25.16.1/go",
104104
Debug: false,
105105
Servers: ServerConfigurations{
106106
{

docs/APIError.md

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# APIError
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**Title** | Pointer to **string** | Short description of the problem. |
8+
**Details** | Pointer to **string** | Longer description of this specific instance of the problem. | [optional]
9+
**Source** | Pointer to [**ErrorSource**](ErrorSource.md) | |
10+
11+
## Methods
12+
13+
### NewAPIError
14+
15+
`func NewAPIError(title string, source ErrorSource, ) *APIError`
16+
17+
NewAPIError instantiates a new APIError object
18+
This constructor will assign default values to properties that have it defined,
19+
and makes sure properties required by API are set, but the set of arguments
20+
will change when the set of required properties is changed
21+
22+
### NewAPIErrorWithDefaults
23+
24+
`func NewAPIErrorWithDefaults() *APIError`
25+
26+
NewAPIErrorWithDefaults instantiates a new APIError object
27+
This constructor will only assign default values to properties that have it defined,
28+
but it doesn't guarantee that properties required by API are set
29+
30+
### GetTitle
31+
32+
`func (o *APIError) GetTitle() string`
33+
34+
GetTitle returns the Title field if non-nil, zero value otherwise.
35+
36+
### GetTitleOk
37+
38+
`func (o *APIError) GetTitleOk() (*string, bool)`
39+
40+
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
41+
and a boolean to check if the value has been set.
42+
43+
### SetTitle
44+
45+
`func (o *APIError) SetTitle(v string)`
46+
47+
SetTitle sets Title field to given value.
48+
49+
50+
### GetDetails
51+
52+
`func (o *APIError) GetDetails() string`
53+
54+
GetDetails returns the Details field if non-nil, zero value otherwise.
55+
56+
### GetDetailsOk
57+
58+
`func (o *APIError) GetDetailsOk() (*string, bool)`
59+
60+
GetDetailsOk returns a tuple with the Details field if it's non-nil, zero value otherwise
61+
and a boolean to check if the value has been set.
62+
63+
### SetDetails
64+
65+
`func (o *APIError) SetDetails(v string)`
66+
67+
SetDetails sets Details field to given value.
68+
69+
### HasDetails
70+
71+
`func (o *APIError) HasDetails() bool`
72+
73+
HasDetails returns a boolean if a field has been set.
74+
75+
### GetSource
76+
77+
`func (o *APIError) GetSource() ErrorSource`
78+
79+
GetSource returns the Source field if non-nil, zero value otherwise.
80+
81+
### GetSourceOk
82+
83+
`func (o *APIError) GetSourceOk() (*ErrorSource, bool)`
84+
85+
GetSourceOk returns a tuple with the Source field if it's non-nil, zero value otherwise
86+
and a boolean to check if the value has been set.
87+
88+
### SetSource
89+
90+
`func (o *APIError) SetSource(v ErrorSource)`
91+
92+
SetSource sets Source field to given value.
93+
94+
95+
96+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
97+
98+

docs/ActivateLoyaltyPoints.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# ActivateLoyaltyPoints
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**TransactionUUIDs** | Pointer to **[]string** | An array of transaction UUIDs used to activate specific pending point transactions. If provided, do not include the `sessionId` parameter. | [optional]
8+
**SessionId** | Pointer to **string** | The ID of the session containing the pending point transactions to activate. If provided, do not include the `transactionUUIDs` parameter. | [optional]
9+
10+
## Methods
11+
12+
### NewActivateLoyaltyPoints
13+
14+
`func NewActivateLoyaltyPoints() *ActivateLoyaltyPoints`
15+
16+
NewActivateLoyaltyPoints instantiates a new ActivateLoyaltyPoints object
17+
This constructor will assign default values to properties that have it defined,
18+
and makes sure properties required by API are set, but the set of arguments
19+
will change when the set of required properties is changed
20+
21+
### NewActivateLoyaltyPointsWithDefaults
22+
23+
`func NewActivateLoyaltyPointsWithDefaults() *ActivateLoyaltyPoints`
24+
25+
NewActivateLoyaltyPointsWithDefaults instantiates a new ActivateLoyaltyPoints object
26+
This constructor will only assign default values to properties that have it defined,
27+
but it doesn't guarantee that properties required by API are set
28+
29+
### GetTransactionUUIDs
30+
31+
`func (o *ActivateLoyaltyPoints) GetTransactionUUIDs() []string`
32+
33+
GetTransactionUUIDs returns the TransactionUUIDs field if non-nil, zero value otherwise.
34+
35+
### GetTransactionUUIDsOk
36+
37+
`func (o *ActivateLoyaltyPoints) GetTransactionUUIDsOk() (*[]string, bool)`
38+
39+
GetTransactionUUIDsOk returns a tuple with the TransactionUUIDs field if it's non-nil, zero value otherwise
40+
and a boolean to check if the value has been set.
41+
42+
### SetTransactionUUIDs
43+
44+
`func (o *ActivateLoyaltyPoints) SetTransactionUUIDs(v []string)`
45+
46+
SetTransactionUUIDs sets TransactionUUIDs field to given value.
47+
48+
### HasTransactionUUIDs
49+
50+
`func (o *ActivateLoyaltyPoints) HasTransactionUUIDs() bool`
51+
52+
HasTransactionUUIDs returns a boolean if a field has been set.
53+
54+
### GetSessionId
55+
56+
`func (o *ActivateLoyaltyPoints) GetSessionId() string`
57+
58+
GetSessionId returns the SessionId field if non-nil, zero value otherwise.
59+
60+
### GetSessionIdOk
61+
62+
`func (o *ActivateLoyaltyPoints) GetSessionIdOk() (*string, bool)`
63+
64+
GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise
65+
and a boolean to check if the value has been set.
66+
67+
### SetSessionId
68+
69+
`func (o *ActivateLoyaltyPoints) SetSessionId(v string)`
70+
71+
SetSessionId sets SessionId field to given value.
72+
73+
### HasSessionId
74+
75+
`func (o *ActivateLoyaltyPoints) HasSessionId() bool`
76+
77+
HasSessionId returns a boolean if a field has been set.
78+
79+
80+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
81+
82+
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# ActivateLoyaltyPointsResponse
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**LedgerEntries** | Pointer to [**[]LoyaltyLedgerEntry**](LoyaltyLedgerEntry.md) | Updated ledger entries after activation. | [optional]
8+
9+
## Methods
10+
11+
### NewActivateLoyaltyPointsResponse
12+
13+
`func NewActivateLoyaltyPointsResponse() *ActivateLoyaltyPointsResponse`
14+
15+
NewActivateLoyaltyPointsResponse instantiates a new ActivateLoyaltyPointsResponse object
16+
This constructor will assign default values to properties that have it defined,
17+
and makes sure properties required by API are set, but the set of arguments
18+
will change when the set of required properties is changed
19+
20+
### NewActivateLoyaltyPointsResponseWithDefaults
21+
22+
`func NewActivateLoyaltyPointsResponseWithDefaults() *ActivateLoyaltyPointsResponse`
23+
24+
NewActivateLoyaltyPointsResponseWithDefaults instantiates a new ActivateLoyaltyPointsResponse object
25+
This constructor will only assign default values to properties that have it defined,
26+
but it doesn't guarantee that properties required by API are set
27+
28+
### GetLedgerEntries
29+
30+
`func (o *ActivateLoyaltyPointsResponse) GetLedgerEntries() []LoyaltyLedgerEntry`
31+
32+
GetLedgerEntries returns the LedgerEntries field if non-nil, zero value otherwise.
33+
34+
### GetLedgerEntriesOk
35+
36+
`func (o *ActivateLoyaltyPointsResponse) GetLedgerEntriesOk() (*[]LoyaltyLedgerEntry, bool)`
37+
38+
GetLedgerEntriesOk returns a tuple with the LedgerEntries field if it's non-nil, zero value otherwise
39+
and a boolean to check if the value has been set.
40+
41+
### SetLedgerEntries
42+
43+
`func (o *ActivateLoyaltyPointsResponse) SetLedgerEntries(v []LoyaltyLedgerEntry)`
44+
45+
SetLedgerEntries sets LedgerEntries field to given value.
46+
47+
### HasLedgerEntries
48+
49+
`func (o *ActivateLoyaltyPointsResponse) HasLedgerEntries() bool`
50+
51+
HasLedgerEntries returns a boolean if a field has been set.
52+
53+
54+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
55+
56+

docs/AddLoyaltyPointsEffectProps.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Name | Type | Description | Notes
1818
**CardIdentifier** | Pointer to **string** | The alphanumeric identifier of the loyalty card. | [optional]
1919
**BundleIndex** | Pointer to **int64** | The position of the bundle in a list of item bundles created from the same bundle definition. | [optional]
2020
**BundleName** | Pointer to **string** | The name of the bundle definition. | [optional]
21+
**AwaitsActivation** | Pointer to **bool** | If `true`, the loyalty points remain pending until a specific action is complete. The `startDate` parameter automatically sets to `on_action`. | [optional]
22+
**ValidityDuration** | Pointer to **string** | The duration for which the points remain active, calculated relative to the activation date. **Note**: This value is returned only if `awaitsActivation` is `true` and `expiryDate` is not set. | [optional]
2123

2224
## Methods
2325

@@ -358,6 +360,56 @@ SetBundleName sets BundleName field to given value.
358360

359361
HasBundleName returns a boolean if a field has been set.
360362

363+
### GetAwaitsActivation
364+
365+
`func (o *AddLoyaltyPointsEffectProps) GetAwaitsActivation() bool`
366+
367+
GetAwaitsActivation returns the AwaitsActivation field if non-nil, zero value otherwise.
368+
369+
### GetAwaitsActivationOk
370+
371+
`func (o *AddLoyaltyPointsEffectProps) GetAwaitsActivationOk() (*bool, bool)`
372+
373+
GetAwaitsActivationOk returns a tuple with the AwaitsActivation field if it's non-nil, zero value otherwise
374+
and a boolean to check if the value has been set.
375+
376+
### SetAwaitsActivation
377+
378+
`func (o *AddLoyaltyPointsEffectProps) SetAwaitsActivation(v bool)`
379+
380+
SetAwaitsActivation sets AwaitsActivation field to given value.
381+
382+
### HasAwaitsActivation
383+
384+
`func (o *AddLoyaltyPointsEffectProps) HasAwaitsActivation() bool`
385+
386+
HasAwaitsActivation returns a boolean if a field has been set.
387+
388+
### GetValidityDuration
389+
390+
`func (o *AddLoyaltyPointsEffectProps) GetValidityDuration() string`
391+
392+
GetValidityDuration returns the ValidityDuration field if non-nil, zero value otherwise.
393+
394+
### GetValidityDurationOk
395+
396+
`func (o *AddLoyaltyPointsEffectProps) GetValidityDurationOk() (*string, bool)`
397+
398+
GetValidityDurationOk returns a tuple with the ValidityDuration field if it's non-nil, zero value otherwise
399+
and a boolean to check if the value has been set.
400+
401+
### SetValidityDuration
402+
403+
`func (o *AddLoyaltyPointsEffectProps) SetValidityDuration(v string)`
404+
405+
SetValidityDuration sets ValidityDuration field to given value.
406+
407+
### HasValidityDuration
408+
409+
`func (o *AddLoyaltyPointsEffectProps) HasValidityDuration() bool`
410+
411+
HasValidityDuration returns a boolean if a field has been set.
412+
361413

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

0 commit comments

Comments
 (0)