Skip to content

Latest commit

 

History

History
169 lines (90 loc) · 4.25 KB

Export.md

File metadata and controls

169 lines (90 loc) · 4.25 KB

Export

Properties

Name Type Description Notes
Id Pointer to int32 Internal ID of this entity.
Created Pointer to time.Time The time this entity was created.
AccountId Pointer to int32 The ID of the account that owns this entity.
UserId Pointer to int32 The ID of the user associated with this entity.
Entity Pointer to string The name of the entity that was exported.
Filter Pointer to map[string]interface{} Map of keys and values that were used to filter the exported rows.

Methods

GetId

func (o *Export) GetId() int32

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *Export) GetIdOk() (int32, bool)

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

HasId

func (o *Export) HasId() bool

HasId returns a boolean if a field has been set.

SetId

func (o *Export) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

GetCreated

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

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

GetCreatedOk

func (o *Export) 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.

HasCreated

func (o *Export) HasCreated() bool

HasCreated returns a boolean if a field has been set.

SetCreated

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

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

GetAccountId

func (o *Export) GetAccountId() int32

GetAccountId returns the AccountId field if non-nil, zero value otherwise.

GetAccountIdOk

func (o *Export) GetAccountIdOk() (int32, bool)

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

HasAccountId

func (o *Export) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

SetAccountId

func (o *Export) SetAccountId(v int32)

SetAccountId gets a reference to the given int32 and assigns it to the AccountId field.

GetUserId

func (o *Export) GetUserId() int32

GetUserId returns the UserId field if non-nil, zero value otherwise.

GetUserIdOk

func (o *Export) GetUserIdOk() (int32, bool)

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

HasUserId

func (o *Export) HasUserId() bool

HasUserId returns a boolean if a field has been set.

SetUserId

func (o *Export) SetUserId(v int32)

SetUserId gets a reference to the given int32 and assigns it to the UserId field.

GetEntity

func (o *Export) GetEntity() string

GetEntity returns the Entity field if non-nil, zero value otherwise.

GetEntityOk

func (o *Export) GetEntityOk() (string, bool)

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

HasEntity

func (o *Export) HasEntity() bool

HasEntity returns a boolean if a field has been set.

SetEntity

func (o *Export) SetEntity(v string)

SetEntity gets a reference to the given string and assigns it to the Entity field.

GetFilter

func (o *Export) GetFilter() map[string]interface{}

GetFilter returns the Filter field if non-nil, zero value otherwise.

GetFilterOk

func (o *Export) GetFilterOk() (map[string]interface{}, bool)

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

HasFilter

func (o *Export) HasFilter() bool

HasFilter returns a boolean if a field has been set.

SetFilter

func (o *Export) SetFilter(v map[string]interface{})

SetFilter gets a reference to the given map[string]interface{} and assigns it to the Filter field.

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