Skip to content

Latest commit

 

History

History
181 lines (98 loc) · 4.61 KB

CompanyInput.md

File metadata and controls

181 lines (98 loc) · 4.61 KB

CompanyInput

Properties

Name Type Description Notes
Type Pointer to string [optional] [default to "company"]
Name string
Description Pointer to string [optional] [default to ""]
Context Pointer to []map[string]interface{} [optional] [default to []]
Created Pointer to time.Time [optional]
Modified Pointer to time.Time [optional]

Methods

NewCompanyInput

func NewCompanyInput(name string, ) *CompanyInput

NewCompanyInput instantiates a new CompanyInput 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

NewCompanyInputWithDefaults

func NewCompanyInputWithDefaults() *CompanyInput

NewCompanyInputWithDefaults instantiates a new CompanyInput 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

GetType

func (o *CompanyInput) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *CompanyInput) GetTypeOk() (*string, 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.

SetType

func (o *CompanyInput) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *CompanyInput) HasType() bool

HasType returns a boolean if a field has been set.

GetName

func (o *CompanyInput) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *CompanyInput) 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.

SetName

func (o *CompanyInput) SetName(v string)

SetName sets Name field to given value.

GetDescription

func (o *CompanyInput) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *CompanyInput) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetContext

func (o *CompanyInput) GetContext() []map[string]interface{}

GetContext returns the Context field if non-nil, zero value otherwise.

GetContextOk

func (o *CompanyInput) GetContextOk() (*[]map[string]interface{}, bool)

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

SetContext

func (o *CompanyInput) SetContext(v []map[string]interface{})

SetContext sets Context field to given value.

HasContext

func (o *CompanyInput) HasContext() bool

HasContext returns a boolean if a field has been set.

GetCreated

func (o *CompanyInput) GetCreated() time.Time

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *CompanyInput) GetCreatedOk() (*time.Time, bool)

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

SetCreated

func (o *CompanyInput) SetCreated(v time.Time)

SetCreated sets Created field to given value.

HasCreated

func (o *CompanyInput) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetModified

func (o *CompanyInput) GetModified() time.Time

GetModified returns the Modified field if non-nil, zero value otherwise.

GetModifiedOk

func (o *CompanyInput) GetModifiedOk() (*time.Time, bool)

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

SetModified

func (o *CompanyInput) SetModified(v time.Time)

SetModified sets Modified field to given value.

HasModified

func (o *CompanyInput) HasModified() bool

HasModified returns a boolean if a field has been set.

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