Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 5.62 KB

Mod.md

File metadata and controls

238 lines (129 loc) · 5.62 KB

Mod

Properties

Name Type Description Notes
Categories Pointer to []string [optional]
Color Pointer to string [optional]
Description Pointer to string [optional]
Documentation Pointer to string [optional]
Name Pointer to string [optional]
Opengraph Pointer to OpenGraph [optional]
Require Pointer to Require [optional]
Title Pointer to string [optional]

Methods

NewMod

func NewMod() *Mod

NewMod instantiates a new Mod 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

NewModWithDefaults

func NewModWithDefaults() *Mod

NewModWithDefaults instantiates a new Mod 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

GetCategories

func (o *Mod) GetCategories() []string

GetCategories returns the Categories field if non-nil, zero value otherwise.

GetCategoriesOk

func (o *Mod) GetCategoriesOk() (*[]string, bool)

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

SetCategories

func (o *Mod) SetCategories(v []string)

SetCategories sets Categories field to given value.

HasCategories

func (o *Mod) HasCategories() bool

HasCategories returns a boolean if a field has been set.

GetColor

func (o *Mod) GetColor() string

GetColor returns the Color field if non-nil, zero value otherwise.

GetColorOk

func (o *Mod) GetColorOk() (*string, bool)

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

SetColor

func (o *Mod) SetColor(v string)

SetColor sets Color field to given value.

HasColor

func (o *Mod) HasColor() bool

HasColor returns a boolean if a field has been set.

GetDescription

func (o *Mod) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *Mod) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetDocumentation

func (o *Mod) GetDocumentation() string

GetDocumentation returns the Documentation field if non-nil, zero value otherwise.

GetDocumentationOk

func (o *Mod) GetDocumentationOk() (*string, bool)

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

SetDocumentation

func (o *Mod) SetDocumentation(v string)

SetDocumentation sets Documentation field to given value.

HasDocumentation

func (o *Mod) HasDocumentation() bool

HasDocumentation returns a boolean if a field has been set.

GetName

func (o *Mod) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *Mod) HasName() bool

HasName returns a boolean if a field has been set.

GetOpengraph

func (o *Mod) GetOpengraph() OpenGraph

GetOpengraph returns the Opengraph field if non-nil, zero value otherwise.

GetOpengraphOk

func (o *Mod) GetOpengraphOk() (*OpenGraph, bool)

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

SetOpengraph

func (o *Mod) SetOpengraph(v OpenGraph)

SetOpengraph sets Opengraph field to given value.

HasOpengraph

func (o *Mod) HasOpengraph() bool

HasOpengraph returns a boolean if a field has been set.

GetRequire

func (o *Mod) GetRequire() Require

GetRequire returns the Require field if non-nil, zero value otherwise.

GetRequireOk

func (o *Mod) GetRequireOk() (*Require, bool)

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

SetRequire

func (o *Mod) SetRequire(v Require)

SetRequire sets Require field to given value.

HasRequire

func (o *Mod) HasRequire() bool

HasRequire returns a boolean if a field has been set.

GetTitle

func (o *Mod) GetTitle() string

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

GetTitleOk

func (o *Mod) 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 *Mod) SetTitle(v string)

SetTitle sets Title field to given value.

HasTitle

func (o *Mod) HasTitle() bool

HasTitle returns a boolean if a field has been set.

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