Skip to content

Latest commit

History

History
134 lines (73 loc) 路 3.37 KB

GenreModelV1.md

File metadata and controls

134 lines (73 loc) 路 3.37 KB

GenreModelV1

Properties

Name Type Description Notes
Id Pointer to int64 [optional]
Genre Pointer to string [optional]
Description Pointer to string [optional]
Demographic Pointer to bool [optional]

Methods

NewGenreModelV1

func NewGenreModelV1() *GenreModelV1

NewGenreModelV1 instantiates a new GenreModelV1 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

NewGenreModelV1WithDefaults

func NewGenreModelV1WithDefaults() *GenreModelV1

NewGenreModelV1WithDefaults instantiates a new GenreModelV1 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 *GenreModelV1) GetId() int64

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *GenreModelV1) HasId() bool

HasId returns a boolean if a field has been set.

GetGenre

func (o *GenreModelV1) GetGenre() string

GetGenre returns the Genre field if non-nil, zero value otherwise.

GetGenreOk

func (o *GenreModelV1) GetGenreOk() (*string, bool)

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

SetGenre

func (o *GenreModelV1) SetGenre(v string)

SetGenre sets Genre field to given value.

HasGenre

func (o *GenreModelV1) HasGenre() bool

HasGenre returns a boolean if a field has been set.

GetDescription

func (o *GenreModelV1) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *GenreModelV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetDemographic

func (o *GenreModelV1) GetDemographic() bool

GetDemographic returns the Demographic field if non-nil, zero value otherwise.

GetDemographicOk

func (o *GenreModelV1) GetDemographicOk() (*bool, bool)

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

SetDemographic

func (o *GenreModelV1) SetDemographic(v bool)

SetDemographic sets Demographic field to given value.

HasDemographic

func (o *GenreModelV1) HasDemographic() bool

HasDemographic returns a boolean if a field has been set.

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