Skip to content

Latest commit

 

History

History
259 lines (140 loc) · 6.51 KB

DynamicField.md

File metadata and controls

259 lines (140 loc) · 6.51 KB

DynamicField

Properties

Name Type Description Notes
Id Pointer to string [optional] [readonly]
Name string
Description Pointer to NullableString [optional]
Namespace Pointer to string [optional] [readonly]
Type string
Scope Pointer to string [optional] [readonly]
Values []DynamicFieldValue
CreatedAt Pointer to time.Time [optional] [readonly]
UpdatedAt Pointer to time.Time [optional] [readonly]

Methods

NewDynamicField

func NewDynamicField(name string, type_ string, values []DynamicFieldValue, ) *DynamicField

NewDynamicField instantiates a new DynamicField 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

NewDynamicFieldWithDefaults

func NewDynamicFieldWithDefaults() *DynamicField

NewDynamicFieldWithDefaults instantiates a new DynamicField 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 *DynamicField) GetId() string

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

GetIdOk

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

SetId

func (o *DynamicField) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *DynamicField) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *DynamicField) GetName() string

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

GetNameOk

func (o *DynamicField) 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 *DynamicField) SetName(v string)

SetName sets Name field to given value.

GetDescription

func (o *DynamicField) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *DynamicField) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *DynamicField) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *DynamicField) HasDescription() bool

HasDescription returns a boolean if a field has been set.

SetDescriptionNil

func (o *DynamicField) SetDescriptionNil(b bool)

SetDescriptionNil sets the value for Description to be an explicit nil

UnsetDescription

func (o *DynamicField) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

GetNamespace

func (o *DynamicField) GetNamespace() string

GetNamespace returns the Namespace field if non-nil, zero value otherwise.

GetNamespaceOk

func (o *DynamicField) GetNamespaceOk() (*string, bool)

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

SetNamespace

func (o *DynamicField) SetNamespace(v string)

SetNamespace sets Namespace field to given value.

HasNamespace

func (o *DynamicField) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

GetType

func (o *DynamicField) GetType() string

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

GetTypeOk

func (o *DynamicField) 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 *DynamicField) SetType(v string)

SetType sets Type field to given value.

GetScope

func (o *DynamicField) GetScope() string

GetScope returns the Scope field if non-nil, zero value otherwise.

GetScopeOk

func (o *DynamicField) GetScopeOk() (*string, bool)

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

SetScope

func (o *DynamicField) SetScope(v string)

SetScope sets Scope field to given value.

HasScope

func (o *DynamicField) HasScope() bool

HasScope returns a boolean if a field has been set.

GetValues

func (o *DynamicField) GetValues() []DynamicFieldValue

GetValues returns the Values field if non-nil, zero value otherwise.

GetValuesOk

func (o *DynamicField) GetValuesOk() (*[]DynamicFieldValue, bool)

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

SetValues

func (o *DynamicField) SetValues(v []DynamicFieldValue)

SetValues sets Values field to given value.

GetCreatedAt

func (o *DynamicField) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *DynamicField) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *DynamicField) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *DynamicField) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

GetUpdatedAt

func (o *DynamicField) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.

GetUpdatedAtOk

func (o *DynamicField) GetUpdatedAtOk() (*time.Time, bool)

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

SetUpdatedAt

func (o *DynamicField) SetUpdatedAt(v time.Time)

SetUpdatedAt sets UpdatedAt field to given value.

HasUpdatedAt

func (o *DynamicField) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

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