| 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. |
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
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
func (o *Export) GetId() int64
GetId returns the Id field if non-nil, zero value otherwise.
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.
func (o *Export) SetId(v int64)
SetId sets Id field to given value.
func (o *Export) GetCreated() time.Time
GetCreated returns the Created field if non-nil, zero value otherwise.
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.
func (o *Export) SetCreated(v time.Time)
SetCreated sets Created field to given value.
func (o *Export) GetAccountId() int64
GetAccountId returns the AccountId field if non-nil, zero value otherwise.
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.
func (o *Export) SetAccountId(v int64)
SetAccountId sets AccountId field to given value.
func (o *Export) GetUserId() int64
GetUserId returns the UserId field if non-nil, zero value otherwise.
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.
func (o *Export) SetUserId(v int64)
SetUserId sets UserId field to given value.
func (o *Export) GetEntity() string
GetEntity returns the Entity field if non-nil, zero value otherwise.
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.
func (o *Export) SetEntity(v string)
SetEntity sets Entity field to given value.
func (o *Export) GetFilter() map[string]interface{}
GetFilter returns the Filter field if non-nil, zero value otherwise.
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.
func (o *Export) SetFilter(v map[string]interface{})
SetFilter sets Filter field to given value.