Skip to content

Latest commit

 

History

History
156 lines (83 loc) · 4.06 KB

File metadata and controls

156 lines (83 loc) · 4.06 KB

Export

Properties

Name Type Description Notes
Id Pointer to int64 The internal ID of this entity.
Created Pointer to time.Time The time this entity was created.
AccountId Pointer to int64 The ID of the account that owns this entity.
UserId Pointer to int64 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

NewExport

func NewExport(id int64, created time.Time, accountId int64, userId int64, entity string, filter map[string]interface{}, ) *Export

NewExport instantiates a new Export 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

NewExportWithDefaults

func NewExportWithDefaults() *Export

NewExportWithDefaults instantiates a new Export 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

GetId

func (o *Export) GetId() int64

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

GetIdOk

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

SetId

func (o *Export) SetId(v int64)

SetId sets Id field to given value.

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.

SetCreated

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

SetCreated sets Created field to given value.

GetAccountId

func (o *Export) GetAccountId() int64

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

GetAccountIdOk

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

SetAccountId

func (o *Export) SetAccountId(v int64)

SetAccountId sets AccountId field to given value.

GetUserId

func (o *Export) GetUserId() int64

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

GetUserIdOk

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

SetUserId

func (o *Export) SetUserId(v int64)

SetUserId sets UserId field to given value.

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.

SetEntity

func (o *Export) SetEntity(v string)

SetEntity sets Entity field to given value.

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.

SetFilter

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

SetFilter sets Filter field to given value.

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