-
Notifications
You must be signed in to change notification settings - Fork 58
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
xendit-devx-bot
committed
Mar 8, 2024
1 parent
651a9f1
commit 38c2a75
Showing
48 changed files
with
712 additions
and
100 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
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,56 @@ | ||
# ChannelProperties | ||
An object representing channel-specific properties. | ||
|
||
## Properties | ||
| Name | Type | Required | Description | Examples | | ||
|------------|:-------------:|:-------------:|-------------|:-------------:| | ||
| **Cards** | Pointer to [**ChannelPropertiesCards**](ChannelPropertiesCards.md) | | | | | ||
|
||
## Methods | ||
|
||
### NewChannelProperties | ||
|
||
`func NewChannelProperties() *ChannelProperties` | ||
|
||
NewChannelProperties instantiates a new ChannelProperties object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewChannelPropertiesWithDefaults | ||
|
||
`func NewChannelPropertiesWithDefaults() *ChannelProperties` | ||
|
||
NewChannelPropertiesWithDefaults instantiates a new ChannelProperties object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetCards | ||
|
||
`func (o *ChannelProperties) GetCards() ChannelPropertiesCards` | ||
|
||
GetCards returns the Cards field if non-nil, zero value otherwise. | ||
|
||
### GetCardsOk | ||
|
||
`func (o *ChannelProperties) GetCardsOk() (*ChannelPropertiesCards, bool)` | ||
|
||
GetCardsOk returns a tuple with the Cards field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetCards | ||
|
||
`func (o *ChannelProperties) SetCards(v ChannelPropertiesCards)` | ||
|
||
SetCards sets Cards field to given value. | ||
|
||
### HasCards | ||
|
||
`func (o *ChannelProperties) HasCards() bool` | ||
|
||
HasCards returns a boolean if a field has been set. | ||
|
||
|
||
[[Back to README]](../../README.md) | ||
|
||
|
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,56 @@ | ||
# ChannelPropertiesCards | ||
An object representing properties specific for credit card payment method. | ||
|
||
## Properties | ||
| Name | Type | Required | Description | Examples | | ||
|------------|:-------------:|:-------------:|-------------|:-------------:| | ||
| **AllowedBins** | Pointer to **string[]** | | An array of allowed BINs (6 or 8 digits) for credit card payments. | | | ||
|
||
## Methods | ||
|
||
### NewChannelPropertiesCards | ||
|
||
`func NewChannelPropertiesCards() *ChannelPropertiesCards` | ||
|
||
NewChannelPropertiesCards instantiates a new ChannelPropertiesCards object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewChannelPropertiesCardsWithDefaults | ||
|
||
`func NewChannelPropertiesCardsWithDefaults() *ChannelPropertiesCards` | ||
|
||
NewChannelPropertiesCardsWithDefaults instantiates a new ChannelPropertiesCards object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetAllowedBins | ||
|
||
`func (o *ChannelPropertiesCards) GetAllowedBins() []string` | ||
|
||
GetAllowedBins returns the AllowedBins field if non-nil, zero value otherwise. | ||
|
||
### GetAllowedBinsOk | ||
|
||
`func (o *ChannelPropertiesCards) GetAllowedBinsOk() (*[]string, bool)` | ||
|
||
GetAllowedBinsOk returns a tuple with the AllowedBins field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetAllowedBins | ||
|
||
`func (o *ChannelPropertiesCards) SetAllowedBins(v []string)` | ||
|
||
SetAllowedBins sets AllowedBins field to given value. | ||
|
||
### HasAllowedBins | ||
|
||
`func (o *ChannelPropertiesCards) HasAllowedBins() bool` | ||
|
||
HasAllowedBins returns a boolean if a field has been set. | ||
|
||
|
||
[[Back to README]](../../README.md) | ||
|
||
|
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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ xendit-invoice-service | |
xendit-invoice-service descriptions | ||
API version: 1.6.0 | ||
API version: 1.7.6 | ||
*/ | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ xendit-invoice-service | |
xendit-invoice-service descriptions | ||
API version: 1.6.0 | ||
API version: 1.7.6 | ||
*/ | ||
|
||
|
||
|
Oops, something went wrong.