Skip to content

Latest commit

 

History

History
245 lines (130 loc) · 6.04 KB

CustomField.md

File metadata and controls

245 lines (130 loc) · 6.04 KB

CustomField

Properties

Name Type Description Notes
Id string
Name string
Title string
Description string
Type CustomFieldType
Placeholder string
Options Pointer to []string [optional]
CreatedAt string
UpdatedAt string
Urls CustomFieldUrls

Methods

NewCustomField

func NewCustomField(id string, name string, title string, description string, type_ CustomFieldType, placeholder string, createdAt string, updatedAt string, urls CustomFieldUrls, ) *CustomField

NewCustomField instantiates a new CustomField 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

NewCustomFieldWithDefaults

func NewCustomFieldWithDefaults() *CustomField

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

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

GetIdOk

func (o *CustomField) 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 *CustomField) SetId(v string)

SetId sets Id field to given value.

GetName

func (o *CustomField) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetTitle

func (o *CustomField) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *CustomField) GetTitleOk() (*string, bool)

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

SetTitle

func (o *CustomField) SetTitle(v string)

SetTitle sets Title field to given value.

GetDescription

func (o *CustomField) GetDescription() string

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

GetDescriptionOk

func (o *CustomField) 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 *CustomField) SetDescription(v string)

SetDescription sets Description field to given value.

GetType

func (o *CustomField) GetType() CustomFieldType

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

GetTypeOk

func (o *CustomField) GetTypeOk() (*CustomFieldType, 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 *CustomField) SetType(v CustomFieldType)

SetType sets Type field to given value.

GetPlaceholder

func (o *CustomField) GetPlaceholder() string

GetPlaceholder returns the Placeholder field if non-nil, zero value otherwise.

GetPlaceholderOk

func (o *CustomField) GetPlaceholderOk() (*string, bool)

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

SetPlaceholder

func (o *CustomField) SetPlaceholder(v string)

SetPlaceholder sets Placeholder field to given value.

GetOptions

func (o *CustomField) GetOptions() []string

GetOptions returns the Options field if non-nil, zero value otherwise.

GetOptionsOk

func (o *CustomField) GetOptionsOk() (*[]string, bool)

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

SetOptions

func (o *CustomField) SetOptions(v []string)

SetOptions sets Options field to given value.

HasOptions

func (o *CustomField) HasOptions() bool

HasOptions returns a boolean if a field has been set.

GetCreatedAt

func (o *CustomField) GetCreatedAt() string

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

GetCreatedAtOk

func (o *CustomField) GetCreatedAtOk() (*string, 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 *CustomField) SetCreatedAt(v string)

SetCreatedAt sets CreatedAt field to given value.

GetUpdatedAt

func (o *CustomField) GetUpdatedAt() string

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

GetUpdatedAtOk

func (o *CustomField) GetUpdatedAtOk() (*string, 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 *CustomField) SetUpdatedAt(v string)

SetUpdatedAt sets UpdatedAt field to given value.

GetUrls

func (o *CustomField) GetUrls() CustomFieldUrls

GetUrls returns the Urls field if non-nil, zero value otherwise.

GetUrlsOk

func (o *CustomField) GetUrlsOk() (*CustomFieldUrls, bool)

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

SetUrls

func (o *CustomField) SetUrls(v CustomFieldUrls)

SetUrls sets Urls field to given value.

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