Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to NullableString | ID of the form | [optional] |
Name | Pointer to NullableString | Name of the form | [optional] |
Title | Pointer to string | The form title | [optional] |
Subtitle | Pointer to string | The form subtitle. | [optional] |
TargetUser | Pointer to string | The name of the user that should be shown this form | [optional] |
Sections | Pointer to []SectionDetails | [optional] |
func NewForm() *Form
NewForm instantiates a new Form 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
func NewFormWithDefaults() *Form
NewFormWithDefaults instantiates a new Form 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
func (o *Form) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Form) 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.
func (o *Form) SetId(v string)
SetId sets Id field to given value.
func (o *Form) HasId() bool
HasId returns a boolean if a field has been set.
func (o *Form) SetIdNil(b bool)
SetIdNil sets the value for Id to be an explicit nil
func (o *Form) UnsetId()
UnsetId ensures that no value is present for Id, not even an explicit nil
func (o *Form) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *Form) 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.
func (o *Form) SetName(v string)
SetName sets Name field to given value.
func (o *Form) HasName() bool
HasName returns a boolean if a field has been set.
func (o *Form) SetNameNil(b bool)
SetNameNil sets the value for Name to be an explicit nil
func (o *Form) UnsetName()
UnsetName ensures that no value is present for Name, not even an explicit nil
func (o *Form) GetTitle() string
GetTitle returns the Title field if non-nil, zero value otherwise.
func (o *Form) 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.
func (o *Form) SetTitle(v string)
SetTitle sets Title field to given value.
func (o *Form) HasTitle() bool
HasTitle returns a boolean if a field has been set.
func (o *Form) GetSubtitle() string
GetSubtitle returns the Subtitle field if non-nil, zero value otherwise.
func (o *Form) GetSubtitleOk() (*string, bool)
GetSubtitleOk returns a tuple with the Subtitle field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Form) SetSubtitle(v string)
SetSubtitle sets Subtitle field to given value.
func (o *Form) HasSubtitle() bool
HasSubtitle returns a boolean if a field has been set.
func (o *Form) GetTargetUser() string
GetTargetUser returns the TargetUser field if non-nil, zero value otherwise.
func (o *Form) GetTargetUserOk() (*string, bool)
GetTargetUserOk returns a tuple with the TargetUser field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Form) SetTargetUser(v string)
SetTargetUser sets TargetUser field to given value.
func (o *Form) HasTargetUser() bool
HasTargetUser returns a boolean if a field has been set.
func (o *Form) GetSections() []SectionDetails
GetSections returns the Sections field if non-nil, zero value otherwise.
func (o *Form) GetSectionsOk() (*[]SectionDetails, bool)
GetSectionsOk returns a tuple with the Sections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Form) SetSections(v []SectionDetails)
SetSections sets Sections field to given value.
func (o *Form) HasSections() bool
HasSections returns a boolean if a field has been set.