Skip to content

Commit

Permalink
Generated version 0.15.0
Browse files Browse the repository at this point in the history
This commit was automatically created by a GitHub Action to generate version 0.15.0 of this library.
  • Loading branch information
devexperience committed Aug 15, 2023
1 parent 0f657b0 commit 52cfa51
Show file tree
Hide file tree
Showing 10 changed files with 1,316 additions and 209 deletions.
9 changes: 9 additions & 0 deletions api_mx_platform.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configuration.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 22 additions & 48 deletions docs/AccountCreateRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccountSubtypeName** | Pointer to **string** | | [optional]
**AccountType** | **int32** | |
**AccountSubtype** | Pointer to **string** | | [optional]
**AccountType** | **string** | |
**Apr** | Pointer to **float32** | | [optional]
**Apy** | Pointer to **float32** | | [optional]
**AvailableBalance** | Pointer to **float32** | | [optional]
Expand All @@ -23,15 +23,14 @@ Name | Type | Description | Notes
**Name** | **string** | |
**Nickname** | Pointer to **string** | | [optional]
**OriginalBalance** | Pointer to **float32** | | [optional]
**PropertyType** | Pointer to **int32** | | [optional]
**PropertyTypeName** | Pointer to **string** | | [optional]
**PropertyType** | Pointer to **string** | | [optional]
**SkipWebhook** | Pointer to **bool** | | [optional]

## Methods

### NewAccountCreateRequest

`func NewAccountCreateRequest(accountType int32, name string, ) *AccountCreateRequest`
`func NewAccountCreateRequest(accountType string, name string, ) *AccountCreateRequest`

NewAccountCreateRequest instantiates a new AccountCreateRequest object
This constructor will assign default values to properties that have it defined,
Expand All @@ -46,47 +45,47 @@ NewAccountCreateRequestWithDefaults instantiates a new AccountCreateRequest obje
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

### GetAccountSubtypeName
### GetAccountSubtype

`func (o *AccountCreateRequest) GetAccountSubtypeName() string`
`func (o *AccountCreateRequest) GetAccountSubtype() string`

GetAccountSubtypeName returns the AccountSubtypeName field if non-nil, zero value otherwise.
GetAccountSubtype returns the AccountSubtype field if non-nil, zero value otherwise.

### GetAccountSubtypeNameOk
### GetAccountSubtypeOk

`func (o *AccountCreateRequest) GetAccountSubtypeNameOk() (*string, bool)`
`func (o *AccountCreateRequest) GetAccountSubtypeOk() (*string, bool)`

GetAccountSubtypeNameOk returns a tuple with the AccountSubtypeName field if it's non-nil, zero value otherwise
GetAccountSubtypeOk returns a tuple with the AccountSubtype field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetAccountSubtypeName
### SetAccountSubtype

`func (o *AccountCreateRequest) SetAccountSubtypeName(v string)`
`func (o *AccountCreateRequest) SetAccountSubtype(v string)`

SetAccountSubtypeName sets AccountSubtypeName field to given value.
SetAccountSubtype sets AccountSubtype field to given value.

### HasAccountSubtypeName
### HasAccountSubtype

`func (o *AccountCreateRequest) HasAccountSubtypeName() bool`
`func (o *AccountCreateRequest) HasAccountSubtype() bool`

HasAccountSubtypeName returns a boolean if a field has been set.
HasAccountSubtype returns a boolean if a field has been set.

### GetAccountType

`func (o *AccountCreateRequest) GetAccountType() int32`
`func (o *AccountCreateRequest) GetAccountType() string`

GetAccountType returns the AccountType field if non-nil, zero value otherwise.

### GetAccountTypeOk

`func (o *AccountCreateRequest) GetAccountTypeOk() (*int32, bool)`
`func (o *AccountCreateRequest) GetAccountTypeOk() (*string, bool)`

GetAccountTypeOk returns a tuple with the AccountType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetAccountType

`func (o *AccountCreateRequest) SetAccountType(v int32)`
`func (o *AccountCreateRequest) SetAccountType(v string)`

SetAccountType sets AccountType field to given value.

Expand Down Expand Up @@ -513,20 +512,20 @@ HasOriginalBalance returns a boolean if a field has been set.

### GetPropertyType

`func (o *AccountCreateRequest) GetPropertyType() int32`
`func (o *AccountCreateRequest) GetPropertyType() string`

GetPropertyType returns the PropertyType field if non-nil, zero value otherwise.

### GetPropertyTypeOk

`func (o *AccountCreateRequest) GetPropertyTypeOk() (*int32, bool)`
`func (o *AccountCreateRequest) GetPropertyTypeOk() (*string, bool)`

GetPropertyTypeOk returns a tuple with the PropertyType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetPropertyType

`func (o *AccountCreateRequest) SetPropertyType(v int32)`
`func (o *AccountCreateRequest) SetPropertyType(v string)`

SetPropertyType sets PropertyType field to given value.

Expand All @@ -536,31 +535,6 @@ SetPropertyType sets PropertyType field to given value.

HasPropertyType returns a boolean if a field has been set.

### GetPropertyTypeName

`func (o *AccountCreateRequest) GetPropertyTypeName() string`

GetPropertyTypeName returns the PropertyTypeName field if non-nil, zero value otherwise.

### GetPropertyTypeNameOk

`func (o *AccountCreateRequest) GetPropertyTypeNameOk() (*string, bool)`

GetPropertyTypeNameOk returns a tuple with the PropertyTypeName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetPropertyTypeName

`func (o *AccountCreateRequest) SetPropertyTypeName(v string)`

SetPropertyTypeName sets PropertyTypeName field to given value.

### HasPropertyTypeName

`func (o *AccountCreateRequest) HasPropertyTypeName() bool`

HasPropertyTypeName returns a boolean if a field has been set.

### GetSkipWebhook

`func (o *AccountCreateRequest) GetSkipWebhook() bool`
Expand Down
44 changes: 4 additions & 40 deletions docs/AccountResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ Name | Type | Description | Notes
**PaymentDueAt** | Pointer to **NullableString** | | [optional]
**PayoffBalance** | Pointer to **NullableFloat32** | | [optional]
**PremiumAmount** | Pointer to **NullableFloat32** | | [optional]
**PropertyType** | Pointer to **NullableInt32** | | [optional]
**PropertyTypeName** | Pointer to **NullableString** | | [optional]
**PropertyType** | Pointer to **NullableString** | | [optional]
**RoutingNumber** | Pointer to **NullableString** | | [optional]
**StartedOn** | Pointer to **NullableString** | | [optional]
**Subtype** | Pointer to **NullableString** | | [optional]
Expand Down Expand Up @@ -1648,20 +1647,20 @@ HasPremiumAmount returns a boolean if a field has been set.
UnsetPremiumAmount ensures that no value is present for PremiumAmount, not even an explicit nil
### GetPropertyType

`func (o *AccountResponse) GetPropertyType() int32`
`func (o *AccountResponse) GetPropertyType() string`

GetPropertyType returns the PropertyType field if non-nil, zero value otherwise.

### GetPropertyTypeOk

`func (o *AccountResponse) GetPropertyTypeOk() (*int32, bool)`
`func (o *AccountResponse) GetPropertyTypeOk() (*string, bool)`

GetPropertyTypeOk returns a tuple with the PropertyType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetPropertyType

`func (o *AccountResponse) SetPropertyType(v int32)`
`func (o *AccountResponse) SetPropertyType(v string)`

SetPropertyType sets PropertyType field to given value.

Expand All @@ -1681,41 +1680,6 @@ HasPropertyType returns a boolean if a field has been set.
`func (o *AccountResponse) UnsetPropertyType()`

UnsetPropertyType ensures that no value is present for PropertyType, not even an explicit nil
### GetPropertyTypeName

`func (o *AccountResponse) GetPropertyTypeName() string`

GetPropertyTypeName returns the PropertyTypeName field if non-nil, zero value otherwise.

### GetPropertyTypeNameOk

`func (o *AccountResponse) GetPropertyTypeNameOk() (*string, bool)`

GetPropertyTypeNameOk returns a tuple with the PropertyTypeName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetPropertyTypeName

`func (o *AccountResponse) SetPropertyTypeName(v string)`

SetPropertyTypeName sets PropertyTypeName field to given value.

### HasPropertyTypeName

`func (o *AccountResponse) HasPropertyTypeName() bool`

HasPropertyTypeName returns a boolean if a field has been set.

### SetPropertyTypeNameNil

`func (o *AccountResponse) SetPropertyTypeNameNil(b bool)`

SetPropertyTypeNameNil sets the value for PropertyTypeName to be an explicit nil

### UnsetPropertyTypeName
`func (o *AccountResponse) UnsetPropertyTypeName()`

UnsetPropertyTypeName ensures that no value is present for PropertyTypeName, not even an explicit nil
### GetRoutingNumber

`func (o *AccountResponse) GetRoutingNumber() string`
Expand Down
Loading

0 comments on commit 52cfa51

Please sign in to comment.