Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 6.3 KB

EntityTransfer.md

File metadata and controls

212 lines (115 loc) · 6.3 KB

EntityTransfer

Properties

Name Type Description Notes
Created Pointer to time.Time When this transfer was created. [optional]
Entities Pointer to GetEntityTransfers200ResponseAllOfDataInnerEntities [optional]
Expiry Pointer to time.Time When this transfer expires. Transfers will automatically expire 24 hours after creation. [optional]
IsSender Pointer to bool If the requesting account created this transfer. [optional]
Status Pointer to string The status of the transfer request: `accepted`: The transfer has been accepted by another user and is currently in progress. Transfers can take up to 3 hours to complete. `canceled`: The transfer has been canceled by the sender. `completed`: The transfer has completed successfully. `failed`: The transfer has failed after initiation. `pending`: The transfer is ready to be accepted. `stale`: The transfer has exceeded its expiration date. It can no longer be accepted or canceled. [optional]
Token Pointer to string The token used to identify and accept or cancel this transfer. [optional]
Updated Pointer to time.Time When this transfer was last updated. [optional]

Methods

NewEntityTransfer

func NewEntityTransfer() *EntityTransfer

NewEntityTransfer instantiates a new EntityTransfer 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

NewEntityTransferWithDefaults

func NewEntityTransferWithDefaults() *EntityTransfer

NewEntityTransferWithDefaults instantiates a new EntityTransfer 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

GetCreated

func (o *EntityTransfer) GetCreated() time.Time

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *EntityTransfer) GetCreatedOk() (*time.Time, bool)

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

SetCreated

func (o *EntityTransfer) SetCreated(v time.Time)

SetCreated sets Created field to given value.

HasCreated

func (o *EntityTransfer) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetEntities

func (o *EntityTransfer) GetEntities() GetEntityTransfers200ResponseAllOfDataInnerEntities

GetEntities returns the Entities field if non-nil, zero value otherwise.

GetEntitiesOk

func (o *EntityTransfer) GetEntitiesOk() (*GetEntityTransfers200ResponseAllOfDataInnerEntities, bool)

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

SetEntities

func (o *EntityTransfer) SetEntities(v GetEntityTransfers200ResponseAllOfDataInnerEntities)

SetEntities sets Entities field to given value.

HasEntities

func (o *EntityTransfer) HasEntities() bool

HasEntities returns a boolean if a field has been set.

GetExpiry

func (o *EntityTransfer) GetExpiry() time.Time

GetExpiry returns the Expiry field if non-nil, zero value otherwise.

GetExpiryOk

func (o *EntityTransfer) GetExpiryOk() (*time.Time, bool)

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

SetExpiry

func (o *EntityTransfer) SetExpiry(v time.Time)

SetExpiry sets Expiry field to given value.

HasExpiry

func (o *EntityTransfer) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

GetIsSender

func (o *EntityTransfer) GetIsSender() bool

GetIsSender returns the IsSender field if non-nil, zero value otherwise.

GetIsSenderOk

func (o *EntityTransfer) GetIsSenderOk() (*bool, bool)

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

SetIsSender

func (o *EntityTransfer) SetIsSender(v bool)

SetIsSender sets IsSender field to given value.

HasIsSender

func (o *EntityTransfer) HasIsSender() bool

HasIsSender returns a boolean if a field has been set.

GetStatus

func (o *EntityTransfer) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *EntityTransfer) GetStatusOk() (*string, bool)

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

SetStatus

func (o *EntityTransfer) SetStatus(v string)

SetStatus sets Status field to given value.

HasStatus

func (o *EntityTransfer) HasStatus() bool

HasStatus returns a boolean if a field has been set.

GetToken

func (o *EntityTransfer) GetToken() string

GetToken returns the Token field if non-nil, zero value otherwise.

GetTokenOk

func (o *EntityTransfer) GetTokenOk() (*string, bool)

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

SetToken

func (o *EntityTransfer) SetToken(v string)

SetToken sets Token field to given value.

HasToken

func (o *EntityTransfer) HasToken() bool

HasToken returns a boolean if a field has been set.

GetUpdated

func (o *EntityTransfer) GetUpdated() time.Time

GetUpdated returns the Updated field if non-nil, zero value otherwise.

GetUpdatedOk

func (o *EntityTransfer) GetUpdatedOk() (*time.Time, bool)

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

SetUpdated

func (o *EntityTransfer) SetUpdated(v time.Time)

SetUpdated sets Updated field to given value.

HasUpdated

func (o *EntityTransfer) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

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