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!' target='_blank'>Web Form 2.0 Public Documentation</a>. | |
CreatedAt | string | The timestamp when the web form was created in the format <code>yyyy-MM-dd'T'HH:mm:ss.SSSZ</code>. | |
ExpiresAt | string | The timestamp when the web form expires in the format <code>yyyy-MM-dd'T'HH:mm:ss.SSSZ</code>. | |
Type | WebFormType | ||
Status | WebFormStatus | ||
Payload | Payload |
func NewWebForm(id string, url string, createdAt string, expiresAt string, type_ WebFormType, status WebFormStatus, payload Payload, ) *WebForm
NewWebForm instantiates a new WebForm 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 NewWebFormWithDefaults() *WebForm
NewWebFormWithDefaults instantiates a new WebForm 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 *WebForm) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *WebForm) 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 *WebForm) SetId(v string)
SetId sets Id field to given value.
func (o *WebForm) GetUrl() string
GetUrl returns the Url field if non-nil, zero value otherwise.
func (o *WebForm) 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.
func (o *WebForm) SetUrl(v string)
SetUrl sets Url field to given value.
func (o *WebForm) GetCreatedAt() string
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
func (o *WebForm) 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.
func (o *WebForm) SetCreatedAt(v string)
SetCreatedAt sets CreatedAt field to given value.
func (o *WebForm) GetExpiresAt() string
GetExpiresAt returns the ExpiresAt field if non-nil, zero value otherwise.
func (o *WebForm) GetExpiresAtOk() (*string, bool)
GetExpiresAtOk returns a tuple with the ExpiresAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WebForm) SetExpiresAt(v string)
SetExpiresAt sets ExpiresAt field to given value.
func (o *WebForm) GetType() WebFormType
GetType returns the Type field if non-nil, zero value otherwise.
func (o *WebForm) GetTypeOk() (*WebFormType, 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.
func (o *WebForm) SetType(v WebFormType)
SetType sets Type field to given value.
func (o *WebForm) GetStatus() WebFormStatus
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *WebForm) 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.
func (o *WebForm) SetStatus(v WebFormStatus)
SetStatus sets Status field to given value.
func (o *WebForm) GetPayload() Payload
GetPayload returns the Payload field if non-nil, zero value otherwise.
func (o *WebForm) GetPayloadOk() (*Payload, bool)
GetPayloadOk returns a tuple with the Payload field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WebForm) SetPayload(v Payload)
SetPayload sets Payload field to given value.