Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.77 KB

File metadata and controls

108 lines (59 loc) · 2.77 KB

HeadingDto

Properties

Name Type Description Notes
Name Pointer to string [optional]
Type Pointer to string [optional]
IsAggregateAmount Pointer to bool [optional]

Methods

NewHeadingDto

func NewHeadingDto() *HeadingDto

NewHeadingDto instantiates a new HeadingDto 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

NewHeadingDtoWithDefaults

func NewHeadingDtoWithDefaults() *HeadingDto

NewHeadingDtoWithDefaults instantiates a new HeadingDto 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 *HeadingDto) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *HeadingDto) HasName() bool

HasName returns a boolean if a field has been set.

GetType

func (o *HeadingDto) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *HeadingDto) GetTypeOk() (*string, bool)

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

SetType

func (o *HeadingDto) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *HeadingDto) HasType() bool

HasType returns a boolean if a field has been set.

GetIsAggregateAmount

func (o *HeadingDto) GetIsAggregateAmount() bool

GetIsAggregateAmount returns the IsAggregateAmount field if non-nil, zero value otherwise.

GetIsAggregateAmountOk

func (o *HeadingDto) GetIsAggregateAmountOk() (*bool, bool)

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

SetIsAggregateAmount

func (o *HeadingDto) SetIsAggregateAmount(v bool)

SetIsAggregateAmount sets IsAggregateAmount field to given value.

HasIsAggregateAmount

func (o *HeadingDto) HasIsAggregateAmount() bool

HasIsAggregateAmount returns a boolean if a field has been set.

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