Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.83 KB

WebFormInfo.md

File metadata and controls

93 lines (50 loc) · 2.83 KB

WebFormInfo

Properties

Name Type Description Notes
Id string Globally unique web form's identifier
Url string Full web form's URL (including the hostname).<br/>You can enhance the given URL with the following query parameters: <code>redirectUrl</code>, <code>errorRedirectUrl</code>, <code>customerSupportUrl</code>.<br/>Find more info in the <a href='https://documentation.finapi.io/webform/For-best-results!.2477654019.html#Forbestresults!-Enhanceend-userexperience!&#39; target='_blank'>Web Form 2.0 Public Documentation</a>.
Status WebFormStatus

Methods

NewWebFormInfo

func NewWebFormInfo(id string, url string, status WebFormStatus, ) *WebFormInfo

NewWebFormInfo instantiates a new WebFormInfo 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

NewWebFormInfoWithDefaults

func NewWebFormInfoWithDefaults() *WebFormInfo

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

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

GetIdOk

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

SetId sets Id field to given value.

GetUrl

func (o *WebFormInfo) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *WebFormInfo) GetUrlOk() (*string, bool)

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

SetUrl

func (o *WebFormInfo) SetUrl(v string)

SetUrl sets Url field to given value.

GetStatus

func (o *WebFormInfo) GetStatus() WebFormStatus

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *WebFormInfo) GetStatusOk() (*WebFormStatus, bool)

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

SetStatus

func (o *WebFormInfo) SetStatus(v WebFormStatus)

SetStatus sets Status field to given value.

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