Skip to content

Latest commit

 

History

History
119 lines (64 loc) · 3.23 KB

ContentKitConfirm.md

File metadata and controls

119 lines (64 loc) · 3.23 KB

ContentKitConfirm

Properties

Name Type Description Notes
Title string A text value that defines the dialog's title.
Text string A text value that defines the explanatory text that appears in the confirm dialog.
Confirm string A text value to define the text of the button that confirms the action.
Style Pointer to string [optional]

Methods

NewContentKitConfirm

func NewContentKitConfirm(title string, text string, confirm string, ) *ContentKitConfirm

NewContentKitConfirm instantiates a new ContentKitConfirm 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

NewContentKitConfirmWithDefaults

func NewContentKitConfirmWithDefaults() *ContentKitConfirm

NewContentKitConfirmWithDefaults instantiates a new ContentKitConfirm 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

GetTitle

func (o *ContentKitConfirm) GetTitle() string

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

GetTitleOk

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

SetTitle sets Title field to given value.

GetText

func (o *ContentKitConfirm) GetText() string

GetText returns the Text field if non-nil, zero value otherwise.

GetTextOk

func (o *ContentKitConfirm) GetTextOk() (*string, bool)

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

SetText

func (o *ContentKitConfirm) SetText(v string)

SetText sets Text field to given value.

GetConfirm

func (o *ContentKitConfirm) GetConfirm() string

GetConfirm returns the Confirm field if non-nil, zero value otherwise.

GetConfirmOk

func (o *ContentKitConfirm) GetConfirmOk() (*string, bool)

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

SetConfirm

func (o *ContentKitConfirm) SetConfirm(v string)

SetConfirm sets Confirm field to given value.

GetStyle

func (o *ContentKitConfirm) GetStyle() string

GetStyle returns the Style field if non-nil, zero value otherwise.

GetStyleOk

func (o *ContentKitConfirm) GetStyleOk() (*string, bool)

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

SetStyle

func (o *ContentKitConfirm) SetStyle(v string)

SetStyle sets Style field to given value.

HasStyle

func (o *ContentKitConfirm) HasStyle() bool

HasStyle returns a boolean if a field has been set.

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