Skip to content

Files

Latest commit

a41ab76 · Apr 19, 2024

History

History
134 lines (73 loc) · 3.71 KB

AnalyzeRecipeRequest.md

File metadata and controls

134 lines (73 loc) · 3.71 KB

AnalyzeRecipeRequest

Properties

Name Type Description Notes
Title Pointer to string [optional]
Servings Pointer to int32 [optional]
Ingredients Pointer to []string [optional]
Instructions Pointer to string [optional]

Methods

NewAnalyzeRecipeRequest

func NewAnalyzeRecipeRequest() *AnalyzeRecipeRequest

NewAnalyzeRecipeRequest instantiates a new AnalyzeRecipeRequest 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

NewAnalyzeRecipeRequestWithDefaults

func NewAnalyzeRecipeRequestWithDefaults() *AnalyzeRecipeRequest

NewAnalyzeRecipeRequestWithDefaults instantiates a new AnalyzeRecipeRequest 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

GetTitle

func (o *AnalyzeRecipeRequest) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *AnalyzeRecipeRequest) GetTitleOk() (*string, bool)

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

SetTitle

func (o *AnalyzeRecipeRequest) SetTitle(v string)

SetTitle sets Title field to given value.

HasTitle

func (o *AnalyzeRecipeRequest) HasTitle() bool

HasTitle returns a boolean if a field has been set.

GetServings

func (o *AnalyzeRecipeRequest) GetServings() int32

GetServings returns the Servings field if non-nil, zero value otherwise.

GetServingsOk

func (o *AnalyzeRecipeRequest) GetServingsOk() (*int32, bool)

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

SetServings

func (o *AnalyzeRecipeRequest) SetServings(v int32)

SetServings sets Servings field to given value.

HasServings

func (o *AnalyzeRecipeRequest) HasServings() bool

HasServings returns a boolean if a field has been set.

GetIngredients

func (o *AnalyzeRecipeRequest) GetIngredients() []string

GetIngredients returns the Ingredients field if non-nil, zero value otherwise.

GetIngredientsOk

func (o *AnalyzeRecipeRequest) GetIngredientsOk() (*[]string, bool)

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

SetIngredients

func (o *AnalyzeRecipeRequest) SetIngredients(v []string)

SetIngredients sets Ingredients field to given value.

HasIngredients

func (o *AnalyzeRecipeRequest) HasIngredients() bool

HasIngredients returns a boolean if a field has been set.

GetInstructions

func (o *AnalyzeRecipeRequest) GetInstructions() string

GetInstructions returns the Instructions field if non-nil, zero value otherwise.

GetInstructionsOk

func (o *AnalyzeRecipeRequest) GetInstructionsOk() (*string, bool)

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

SetInstructions

func (o *AnalyzeRecipeRequest) SetInstructions(v string)

SetInstructions sets Instructions field to given value.

HasInstructions

func (o *AnalyzeRecipeRequest) HasInstructions() bool

HasInstructions returns a boolean if a field has been set.

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