Skip to content

Latest commit

 

History

History
222 lines (121 loc) · 5.13 KB

File metadata and controls

222 lines (121 loc) · 5.13 KB

Crew

Properties

Name Type Description Notes
Id Pointer to float32 [optional]
CreditId Pointer to string [optional]
Gender Pointer to float32 [optional]
Name Pointer to string [optional]
Job Pointer to string [optional]
Department Pointer to string [optional]
ProfilePath Pointer to NullableString [optional]

Methods

NewCrew

func NewCrew() *Crew

NewCrew instantiates a new Crew 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

NewCrewWithDefaults

func NewCrewWithDefaults() *Crew

NewCrewWithDefaults instantiates a new Crew 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 *Crew) GetId() float32

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

GetIdOk

func (o *Crew) GetIdOk() (*float32, 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 *Crew) SetId(v float32)

SetId sets Id field to given value.

HasId

func (o *Crew) HasId() bool

HasId returns a boolean if a field has been set.

GetCreditId

func (o *Crew) GetCreditId() string

GetCreditId returns the CreditId field if non-nil, zero value otherwise.

GetCreditIdOk

func (o *Crew) GetCreditIdOk() (*string, bool)

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

SetCreditId

func (o *Crew) SetCreditId(v string)

SetCreditId sets CreditId field to given value.

HasCreditId

func (o *Crew) HasCreditId() bool

HasCreditId returns a boolean if a field has been set.

GetGender

func (o *Crew) GetGender() float32

GetGender returns the Gender field if non-nil, zero value otherwise.

GetGenderOk

func (o *Crew) GetGenderOk() (*float32, bool)

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

SetGender

func (o *Crew) SetGender(v float32)

SetGender sets Gender field to given value.

HasGender

func (o *Crew) HasGender() bool

HasGender returns a boolean if a field has been set.

GetName

func (o *Crew) GetName() string

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

GetNameOk

func (o *Crew) 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 *Crew) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *Crew) HasName() bool

HasName returns a boolean if a field has been set.

GetJob

func (o *Crew) GetJob() string

GetJob returns the Job field if non-nil, zero value otherwise.

GetJobOk

func (o *Crew) GetJobOk() (*string, bool)

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

SetJob

func (o *Crew) SetJob(v string)

SetJob sets Job field to given value.

HasJob

func (o *Crew) HasJob() bool

HasJob returns a boolean if a field has been set.

GetDepartment

func (o *Crew) GetDepartment() string

GetDepartment returns the Department field if non-nil, zero value otherwise.

GetDepartmentOk

func (o *Crew) GetDepartmentOk() (*string, bool)

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

SetDepartment

func (o *Crew) SetDepartment(v string)

SetDepartment sets Department field to given value.

HasDepartment

func (o *Crew) HasDepartment() bool

HasDepartment returns a boolean if a field has been set.

GetProfilePath

func (o *Crew) GetProfilePath() string

GetProfilePath returns the ProfilePath field if non-nil, zero value otherwise.

GetProfilePathOk

func (o *Crew) GetProfilePathOk() (*string, bool)

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

SetProfilePath

func (o *Crew) SetProfilePath(v string)

SetProfilePath sets ProfilePath field to given value.

HasProfilePath

func (o *Crew) HasProfilePath() bool

HasProfilePath returns a boolean if a field has been set.

SetProfilePathNil

func (o *Crew) SetProfilePathNil(b bool)

SetProfilePathNil sets the value for ProfilePath to be an explicit nil

UnsetProfilePath

func (o *Crew) UnsetProfilePath()

UnsetProfilePath ensures that no value is present for ProfilePath, not even an explicit nil

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