Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.76 KB

CustomFieldAllOf.md

File metadata and controls

93 lines (50 loc) · 2.76 KB

CustomFieldAllOf

Properties

Name Type Description Notes
FieldId string Identifier of the field.
DataType string Field type. Possible values are `String`, `Long`, `Int`, `Double`, and `Boolean`.
State string Indicates whether the field is enabled and its values are being accepted. Possible values are `Enabled` and `Disabled`.

Methods

NewCustomFieldAllOf

func NewCustomFieldAllOf(fieldId string, dataType string, state string, ) *CustomFieldAllOf

NewCustomFieldAllOf instantiates a new CustomFieldAllOf 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

NewCustomFieldAllOfWithDefaults

func NewCustomFieldAllOfWithDefaults() *CustomFieldAllOf

NewCustomFieldAllOfWithDefaults instantiates a new CustomFieldAllOf 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

GetFieldId

func (o *CustomFieldAllOf) GetFieldId() string

GetFieldId returns the FieldId field if non-nil, zero value otherwise.

GetFieldIdOk

func (o *CustomFieldAllOf) GetFieldIdOk() (*string, bool)

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

SetFieldId

func (o *CustomFieldAllOf) SetFieldId(v string)

SetFieldId sets FieldId field to given value.

GetDataType

func (o *CustomFieldAllOf) GetDataType() string

GetDataType returns the DataType field if non-nil, zero value otherwise.

GetDataTypeOk

func (o *CustomFieldAllOf) GetDataTypeOk() (*string, bool)

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

SetDataType

func (o *CustomFieldAllOf) SetDataType(v string)

SetDataType sets DataType field to given value.

GetState

func (o *CustomFieldAllOf) GetState() string

GetState returns the State field if non-nil, zero value otherwise.

GetStateOk

func (o *CustomFieldAllOf) GetStateOk() (*string, bool)

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

SetState

func (o *CustomFieldAllOf) SetState(v string)

SetState sets State field to given value.

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