| Name | Type | Description | Notes |
|---|---|---|---|
| Id | string | The import ID | |
| SegmentKey | string | The segment key | |
| CreationTime | int64 | ||
| Mode | string | The import mode used, either <code>merge</code> or <code>replace</code> | |
| Status | string | The import status | |
| Files | Pointer to []FileRep | The imported files and their status | [optional] |
| Links | map[string]Link | The location and content type of related resources |
func NewImport(id string, segmentKey string, creationTime int64, mode string, status string, links map[string]Link, ) *Import
NewImport instantiates a new Import 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 NewImportWithDefaults() *Import
NewImportWithDefaults instantiates a new Import 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 *Import) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Import) GetIdOk() (*string, 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 *Import) SetId(v string)
SetId sets Id field to given value.
func (o *Import) GetSegmentKey() string
GetSegmentKey returns the SegmentKey field if non-nil, zero value otherwise.
func (o *Import) GetSegmentKeyOk() (*string, bool)
GetSegmentKeyOk returns a tuple with the SegmentKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Import) SetSegmentKey(v string)
SetSegmentKey sets SegmentKey field to given value.
func (o *Import) GetCreationTime() int64
GetCreationTime returns the CreationTime field if non-nil, zero value otherwise.
func (o *Import) GetCreationTimeOk() (*int64, bool)
GetCreationTimeOk returns a tuple with the CreationTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Import) SetCreationTime(v int64)
SetCreationTime sets CreationTime field to given value.
func (o *Import) GetMode() string
GetMode returns the Mode field if non-nil, zero value otherwise.
func (o *Import) GetModeOk() (*string, bool)
GetModeOk returns a tuple with the Mode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Import) SetMode(v string)
SetMode sets Mode field to given value.
func (o *Import) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *Import) 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.
func (o *Import) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *Import) GetFiles() []FileRep
GetFiles returns the Files field if non-nil, zero value otherwise.
func (o *Import) GetFilesOk() (*[]FileRep, bool)
GetFilesOk returns a tuple with the Files field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Import) SetFiles(v []FileRep)
SetFiles sets Files field to given value.
func (o *Import) HasFiles() bool
HasFiles returns a boolean if a field has been set.
func (o *Import) GetLinks() map[string]Link
GetLinks returns the Links field if non-nil, zero value otherwise.
func (o *Import) GetLinksOk() (*map[string]Link, bool)
GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Import) SetLinks(v map[string]Link)
SetLinks sets Links field to given value.