Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.45 KB

File metadata and controls

82 lines (45 loc) · 2.45 KB

ProgramEditionBaseElement

Properties

Name Type Description Notes
Name string The name of the element.
Credits NullableFloat64 The credits of the element.

Methods

NewProgramEditionBaseElement

func NewProgramEditionBaseElement(name string, credits NullableFloat64, ) *ProgramEditionBaseElement

NewProgramEditionBaseElement instantiates a new ProgramEditionBaseElement 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

NewProgramEditionBaseElementWithDefaults

func NewProgramEditionBaseElementWithDefaults() *ProgramEditionBaseElement

NewProgramEditionBaseElementWithDefaults instantiates a new ProgramEditionBaseElement 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

GetName

func (o *ProgramEditionBaseElement) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetCredits

func (o *ProgramEditionBaseElement) GetCredits() float64

GetCredits returns the Credits field if non-nil, zero value otherwise.

GetCreditsOk

func (o *ProgramEditionBaseElement) GetCreditsOk() (*float64, bool)

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

SetCredits

func (o *ProgramEditionBaseElement) SetCredits(v float64)

SetCredits sets Credits field to given value.

SetCreditsNil

func (o *ProgramEditionBaseElement) SetCreditsNil(b bool)

SetCreditsNil sets the value for Credits to be an explicit nil

UnsetCredits

func (o *ProgramEditionBaseElement) UnsetCredits()

UnsetCredits ensures that no value is present for Credits, not even an explicit nil

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