Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 5.57 KB

File metadata and controls

212 lines (115 loc) · 5.57 KB

SegmentMetadata

Properties

Name Type Description Notes
EnvId Pointer to string [optional]
SegmentId Pointer to string [optional]
Version Pointer to int32 [optional]
IncludedCount Pointer to int32 [optional]
ExcludedCount Pointer to int32 [optional]
LastModified Pointer to int64 [optional]
Deleted Pointer to bool [optional]

Methods

NewSegmentMetadata

func NewSegmentMetadata() *SegmentMetadata

NewSegmentMetadata instantiates a new SegmentMetadata 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

NewSegmentMetadataWithDefaults

func NewSegmentMetadataWithDefaults() *SegmentMetadata

NewSegmentMetadataWithDefaults instantiates a new SegmentMetadata 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

GetEnvId

func (o *SegmentMetadata) GetEnvId() string

GetEnvId returns the EnvId field if non-nil, zero value otherwise.

GetEnvIdOk

func (o *SegmentMetadata) GetEnvIdOk() (*string, bool)

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

SetEnvId

func (o *SegmentMetadata) SetEnvId(v string)

SetEnvId sets EnvId field to given value.

HasEnvId

func (o *SegmentMetadata) HasEnvId() bool

HasEnvId returns a boolean if a field has been set.

GetSegmentId

func (o *SegmentMetadata) GetSegmentId() string

GetSegmentId returns the SegmentId field if non-nil, zero value otherwise.

GetSegmentIdOk

func (o *SegmentMetadata) GetSegmentIdOk() (*string, bool)

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

SetSegmentId

func (o *SegmentMetadata) SetSegmentId(v string)

SetSegmentId sets SegmentId field to given value.

HasSegmentId

func (o *SegmentMetadata) HasSegmentId() bool

HasSegmentId returns a boolean if a field has been set.

GetVersion

func (o *SegmentMetadata) GetVersion() int32

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *SegmentMetadata) GetVersionOk() (*int32, bool)

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

SetVersion

func (o *SegmentMetadata) SetVersion(v int32)

SetVersion sets Version field to given value.

HasVersion

func (o *SegmentMetadata) HasVersion() bool

HasVersion returns a boolean if a field has been set.

GetIncludedCount

func (o *SegmentMetadata) GetIncludedCount() int32

GetIncludedCount returns the IncludedCount field if non-nil, zero value otherwise.

GetIncludedCountOk

func (o *SegmentMetadata) GetIncludedCountOk() (*int32, bool)

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

SetIncludedCount

func (o *SegmentMetadata) SetIncludedCount(v int32)

SetIncludedCount sets IncludedCount field to given value.

HasIncludedCount

func (o *SegmentMetadata) HasIncludedCount() bool

HasIncludedCount returns a boolean if a field has been set.

GetExcludedCount

func (o *SegmentMetadata) GetExcludedCount() int32

GetExcludedCount returns the ExcludedCount field if non-nil, zero value otherwise.

GetExcludedCountOk

func (o *SegmentMetadata) GetExcludedCountOk() (*int32, bool)

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

SetExcludedCount

func (o *SegmentMetadata) SetExcludedCount(v int32)

SetExcludedCount sets ExcludedCount field to given value.

HasExcludedCount

func (o *SegmentMetadata) HasExcludedCount() bool

HasExcludedCount returns a boolean if a field has been set.

GetLastModified

func (o *SegmentMetadata) GetLastModified() int64

GetLastModified returns the LastModified field if non-nil, zero value otherwise.

GetLastModifiedOk

func (o *SegmentMetadata) GetLastModifiedOk() (*int64, bool)

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

SetLastModified

func (o *SegmentMetadata) SetLastModified(v int64)

SetLastModified sets LastModified field to given value.

HasLastModified

func (o *SegmentMetadata) HasLastModified() bool

HasLastModified returns a boolean if a field has been set.

GetDeleted

func (o *SegmentMetadata) GetDeleted() bool

GetDeleted returns the Deleted field if non-nil, zero value otherwise.

GetDeletedOk

func (o *SegmentMetadata) GetDeletedOk() (*bool, bool)

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

SetDeleted

func (o *SegmentMetadata) SetDeleted(v bool)

SetDeleted sets Deleted field to given value.

HasDeleted

func (o *SegmentMetadata) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

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