Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.74 KB

Subject.md

File metadata and controls

72 lines (39 loc) · 1.74 KB

Subject

Properties

Name Type Description Notes
Kind string
Name string

Methods

NewSubject

func NewSubject(kind string, name string, ) *Subject

NewSubject instantiates a new Subject 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

NewSubjectWithDefaults

func NewSubjectWithDefaults() *Subject

NewSubjectWithDefaults instantiates a new Subject 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

GetKind

func (o *Subject) GetKind() string

GetKind returns the Kind field if non-nil, zero value otherwise.

GetKindOk

func (o *Subject) GetKindOk() (*string, bool)

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

SetKind

func (o *Subject) SetKind(v string)

SetKind sets Kind field to given value.

GetName

func (o *Subject) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

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