Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.65 KB

File metadata and controls

134 lines (73 loc) · 3.65 KB

TypeDefinition

Properties

Name Type Description Notes
LastChange Pointer to NullableString [optional]
Name string Name of the type definition
Type string Underlying type of the type definition
ArtifactType Pointer to string Type of artifact the type definition is associated with [optional]

Methods

NewTypeDefinition

func NewTypeDefinition(name string, type_ string, ) *TypeDefinition

NewTypeDefinition instantiates a new TypeDefinition 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

NewTypeDefinitionWithDefaults

func NewTypeDefinitionWithDefaults() *TypeDefinition

NewTypeDefinitionWithDefaults instantiates a new TypeDefinition 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

GetLastChange

func (o *TypeDefinition) GetLastChange() string

GetLastChange returns the LastChange field if non-nil, zero value otherwise.

GetLastChangeOk

func (o *TypeDefinition) GetLastChangeOk() (*string, bool)

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

SetLastChange

func (o *TypeDefinition) SetLastChange(v string)

SetLastChange sets LastChange field to given value.

HasLastChange

func (o *TypeDefinition) HasLastChange() bool

HasLastChange returns a boolean if a field has been set.

SetLastChangeNil

func (o *TypeDefinition) SetLastChangeNil(b bool)

SetLastChangeNil sets the value for LastChange to be an explicit nil

UnsetLastChange

func (o *TypeDefinition) UnsetLastChange()

UnsetLastChange ensures that no value is present for LastChange, not even an explicit nil

GetName

func (o *TypeDefinition) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *TypeDefinition) GetNameOk() (*string, bool)

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

SetName

func (o *TypeDefinition) SetName(v string)

SetName sets Name field to given value.

GetType

func (o *TypeDefinition) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *TypeDefinition) GetTypeOk() (*string, bool)

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

SetType

func (o *TypeDefinition) SetType(v string)

SetType sets Type field to given value.

GetArtifactType

func (o *TypeDefinition) GetArtifactType() string

GetArtifactType returns the ArtifactType field if non-nil, zero value otherwise.

GetArtifactTypeOk

func (o *TypeDefinition) GetArtifactTypeOk() (*string, bool)

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

SetArtifactType

func (o *TypeDefinition) SetArtifactType(v string)

SetArtifactType sets ArtifactType field to given value.

HasArtifactType

func (o *TypeDefinition) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

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