Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.35 KB

File metadata and controls

82 lines (45 loc) · 2.35 KB

BankDetailDto

Properties

Name Type Description Notes
AccountNumber Pointer to string [optional]
RoutingNumber Pointer to string [optional]

Methods

NewBankDetailDto

func NewBankDetailDto() *BankDetailDto

NewBankDetailDto instantiates a new BankDetailDto 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

NewBankDetailDtoWithDefaults

func NewBankDetailDtoWithDefaults() *BankDetailDto

NewBankDetailDtoWithDefaults instantiates a new BankDetailDto 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

GetAccountNumber

func (o *BankDetailDto) GetAccountNumber() string

GetAccountNumber returns the AccountNumber field if non-nil, zero value otherwise.

GetAccountNumberOk

func (o *BankDetailDto) GetAccountNumberOk() (*string, bool)

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

SetAccountNumber

func (o *BankDetailDto) SetAccountNumber(v string)

SetAccountNumber sets AccountNumber field to given value.

HasAccountNumber

func (o *BankDetailDto) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

GetRoutingNumber

func (o *BankDetailDto) GetRoutingNumber() string

GetRoutingNumber returns the RoutingNumber field if non-nil, zero value otherwise.

GetRoutingNumberOk

func (o *BankDetailDto) GetRoutingNumberOk() (*string, bool)

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

SetRoutingNumber

func (o *BankDetailDto) SetRoutingNumber(v string)

SetRoutingNumber sets RoutingNumber field to given value.

HasRoutingNumber

func (o *BankDetailDto) HasRoutingNumber() bool

HasRoutingNumber returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]