Skip to content

Latest commit

 

History

History
161 lines (86 loc) · 3.86 KB

Source.md

File metadata and controls

161 lines (86 loc) · 3.86 KB

Source

Properties

Name Type Description Notes
Id int32
MetaType string
QualifiedName string
DisplayName string
Url string
Links Pointer to SourceLinks [optional]

Methods

NewSource

func NewSource(id int32, metaType string, qualifiedName string, displayName string, url string, ) *Source

NewSource instantiates a new Source 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

NewSourceWithDefaults

func NewSourceWithDefaults() *Source

NewSourceWithDefaults instantiates a new Source 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

GetId

func (o *Source) GetId() int32

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *Source) GetIdOk() (*int32, bool)

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

SetId

func (o *Source) SetId(v int32)

SetId sets Id field to given value.

GetMetaType

func (o *Source) GetMetaType() string

GetMetaType returns the MetaType field if non-nil, zero value otherwise.

GetMetaTypeOk

func (o *Source) GetMetaTypeOk() (*string, bool)

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

SetMetaType

func (o *Source) SetMetaType(v string)

SetMetaType sets MetaType field to given value.

GetQualifiedName

func (o *Source) GetQualifiedName() string

GetQualifiedName returns the QualifiedName field if non-nil, zero value otherwise.

GetQualifiedNameOk

func (o *Source) GetQualifiedNameOk() (*string, bool)

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

SetQualifiedName

func (o *Source) SetQualifiedName(v string)

SetQualifiedName sets QualifiedName field to given value.

GetDisplayName

func (o *Source) GetDisplayName() string

GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.

GetDisplayNameOk

func (o *Source) GetDisplayNameOk() (*string, bool)

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

SetDisplayName

func (o *Source) SetDisplayName(v string)

SetDisplayName sets DisplayName field to given value.

GetUrl

func (o *Source) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *Source) GetUrlOk() (*string, bool)

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

SetUrl

func (o *Source) SetUrl(v string)

SetUrl sets Url field to given value.

GetLinks

func (o *Source) GetLinks() SourceLinks

GetLinks returns the Links field if non-nil, zero value otherwise.

GetLinksOk

func (o *Source) GetLinksOk() (*SourceLinks, bool)

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

SetLinks

func (o *Source) SetLinks(v SourceLinks)

SetLinks sets Links field to given value.

HasLinks

func (o *Source) HasLinks() bool

HasLinks returns a boolean if a field has been set.

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