Skip to content

Latest commit

 

History

History
198 lines (105 loc) · 4.75 KB

DataFile.md

File metadata and controls

198 lines (105 loc) · 4.75 KB

DataFile

Properties

Name Type Description Notes
Id int32 [readonly]
Url string [readonly]
Display string [readonly]
Source DataSource [readonly]
Path string File path relative to the data source's root [readonly]
LastUpdated time.Time [readonly]
Size int32 [readonly]
Hash string SHA256 hash of the file data [readonly]

Methods

NewDataFile

func NewDataFile(id int32, url string, display string, source DataSource, path string, lastUpdated time.Time, size int32, hash string, ) *DataFile

NewDataFile instantiates a new DataFile 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

NewDataFileWithDefaults

func NewDataFileWithDefaults() *DataFile

NewDataFileWithDefaults instantiates a new DataFile 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 *DataFile) GetId() int32

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

GetIdOk

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

SetId

func (o *DataFile) SetId(v int32)

SetId sets Id field to given value.

GetUrl

func (o *DataFile) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *DataFile) GetUrlOk() (*string, bool)

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

SetUrl

func (o *DataFile) SetUrl(v string)

SetUrl sets Url field to given value.

GetDisplay

func (o *DataFile) GetDisplay() string

GetDisplay returns the Display field if non-nil, zero value otherwise.

GetDisplayOk

func (o *DataFile) GetDisplayOk() (*string, bool)

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

SetDisplay

func (o *DataFile) SetDisplay(v string)

SetDisplay sets Display field to given value.

GetSource

func (o *DataFile) GetSource() DataSource

GetSource returns the Source field if non-nil, zero value otherwise.

GetSourceOk

func (o *DataFile) GetSourceOk() (*DataSource, bool)

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

SetSource

func (o *DataFile) SetSource(v DataSource)

SetSource sets Source field to given value.

GetPath

func (o *DataFile) GetPath() string

GetPath returns the Path field if non-nil, zero value otherwise.

GetPathOk

func (o *DataFile) GetPathOk() (*string, bool)

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

SetPath

func (o *DataFile) SetPath(v string)

SetPath sets Path field to given value.

GetLastUpdated

func (o *DataFile) GetLastUpdated() time.Time

GetLastUpdated returns the LastUpdated field if non-nil, zero value otherwise.

GetLastUpdatedOk

func (o *DataFile) GetLastUpdatedOk() (*time.Time, bool)

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

SetLastUpdated

func (o *DataFile) SetLastUpdated(v time.Time)

SetLastUpdated sets LastUpdated field to given value.

GetSize

func (o *DataFile) GetSize() int32

GetSize returns the Size field if non-nil, zero value otherwise.

GetSizeOk

func (o *DataFile) GetSizeOk() (*int32, bool)

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

SetSize

func (o *DataFile) SetSize(v int32)

SetSize sets Size field to given value.

GetHash

func (o *DataFile) GetHash() string

GetHash returns the Hash field if non-nil, zero value otherwise.

GetHashOk

func (o *DataFile) GetHashOk() (*string, bool)

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

SetHash

func (o *DataFile) SetHash(v string)

SetHash sets Hash field to given value.

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