Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.27 KB

MessageSourceDto.md

File metadata and controls

160 lines (87 loc) · 4.27 KB

MessageSourceDto

Properties

Name Type Description Notes
Name Pointer to string [optional]
Description Pointer to string [optional]
IsPublished Pointer to bool [optional]
IconUrl Pointer to string [optional]
Routes Pointer to []MessageSourceRouteSubDto [optional]

Methods

NewMessageSourceDto

func NewMessageSourceDto() *MessageSourceDto

NewMessageSourceDto instantiates a new MessageSourceDto 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

NewMessageSourceDtoWithDefaults

func NewMessageSourceDtoWithDefaults() *MessageSourceDto

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

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *MessageSourceDto) HasName() bool

HasName returns a boolean if a field has been set.

GetDescription

func (o *MessageSourceDto) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *MessageSourceDto) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetIsPublished

func (o *MessageSourceDto) GetIsPublished() bool

GetIsPublished returns the IsPublished field if non-nil, zero value otherwise.

GetIsPublishedOk

func (o *MessageSourceDto) GetIsPublishedOk() (*bool, bool)

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

SetIsPublished

func (o *MessageSourceDto) SetIsPublished(v bool)

SetIsPublished sets IsPublished field to given value.

HasIsPublished

func (o *MessageSourceDto) HasIsPublished() bool

HasIsPublished returns a boolean if a field has been set.

GetIconUrl

func (o *MessageSourceDto) GetIconUrl() string

GetIconUrl returns the IconUrl field if non-nil, zero value otherwise.

GetIconUrlOk

func (o *MessageSourceDto) GetIconUrlOk() (*string, bool)

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

SetIconUrl

func (o *MessageSourceDto) SetIconUrl(v string)

SetIconUrl sets IconUrl field to given value.

HasIconUrl

func (o *MessageSourceDto) HasIconUrl() bool

HasIconUrl returns a boolean if a field has been set.

GetRoutes

func (o *MessageSourceDto) GetRoutes() []MessageSourceRouteSubDto

GetRoutes returns the Routes field if non-nil, zero value otherwise.

GetRoutesOk

func (o *MessageSourceDto) GetRoutesOk() (*[]MessageSourceRouteSubDto, bool)

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

SetRoutes

func (o *MessageSourceDto) SetRoutes(v []MessageSourceRouteSubDto)

SetRoutes sets Routes field to given value.

HasRoutes

func (o *MessageSourceDto) HasRoutes() bool

HasRoutes returns a boolean if a field has been set.

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