Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.77 KB

AppRequestFormInputField.md

File metadata and controls

134 lines (73 loc) · 3.77 KB

AppRequestFormInputField

Properties

Name Type Description Notes
Id Pointer to int64 [optional] [readonly]
Title string
Description Pointer to NullableString [optional]
Priority int64 Highest priority is 1, lowest is 255

Methods

NewAppRequestFormInputField

func NewAppRequestFormInputField(title string, priority int64, ) *AppRequestFormInputField

NewAppRequestFormInputField instantiates a new AppRequestFormInputField 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

NewAppRequestFormInputFieldWithDefaults

func NewAppRequestFormInputFieldWithDefaults() *AppRequestFormInputField

NewAppRequestFormInputFieldWithDefaults instantiates a new AppRequestFormInputField 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 *AppRequestFormInputField) GetId() int64

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

GetIdOk

func (o *AppRequestFormInputField) GetIdOk() (*int64, 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 *AppRequestFormInputField) SetId(v int64)

SetId sets Id field to given value.

HasId

func (o *AppRequestFormInputField) HasId() bool

HasId returns a boolean if a field has been set.

GetTitle

func (o *AppRequestFormInputField) GetTitle() string

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

GetTitleOk

func (o *AppRequestFormInputField) 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 *AppRequestFormInputField) SetTitle(v string)

SetTitle sets Title field to given value.

GetDescription

func (o *AppRequestFormInputField) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *AppRequestFormInputField) HasDescription() bool

HasDescription returns a boolean if a field has been set.

SetDescriptionNil

func (o *AppRequestFormInputField) SetDescriptionNil(b bool)

SetDescriptionNil sets the value for Description to be an explicit nil

UnsetDescription

func (o *AppRequestFormInputField) UnsetDescription()

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

GetPriority

func (o *AppRequestFormInputField) GetPriority() int64

GetPriority returns the Priority field if non-nil, zero value otherwise.

GetPriorityOk

func (o *AppRequestFormInputField) GetPriorityOk() (*int64, bool)

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

SetPriority

func (o *AppRequestFormInputField) SetPriority(v int64)

SetPriority sets Priority field to given value.

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