Skip to content

Files

Latest commit

 

History

History
144 lines (79 loc) · 4.61 KB

FeedbackFeedbackPost.md

File metadata and controls

144 lines (79 loc) · 4.61 KB

FeedbackFeedbackPost

Properties

Name Type Description Notes
ClassId string The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. [default to "feedback.FeedbackPost"]
ObjectType string The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to "feedback.FeedbackPost"]
FeedbackData Pointer to NullableFeedbackFeedbackData [optional]
Account Pointer to NullableIamAccountRelationship [optional]

Methods

NewFeedbackFeedbackPost

func NewFeedbackFeedbackPost(classId string, objectType string, ) *FeedbackFeedbackPost

NewFeedbackFeedbackPost instantiates a new FeedbackFeedbackPost 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

NewFeedbackFeedbackPostWithDefaults

func NewFeedbackFeedbackPostWithDefaults() *FeedbackFeedbackPost

NewFeedbackFeedbackPostWithDefaults instantiates a new FeedbackFeedbackPost 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

GetClassId

func (o *FeedbackFeedbackPost) GetClassId() string

GetClassId returns the ClassId field if non-nil, zero value otherwise.

GetClassIdOk

func (o *FeedbackFeedbackPost) GetClassIdOk() (*string, bool)

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

SetClassId

func (o *FeedbackFeedbackPost) SetClassId(v string)

SetClassId sets ClassId field to given value.

GetObjectType

func (o *FeedbackFeedbackPost) GetObjectType() string

GetObjectType returns the ObjectType field if non-nil, zero value otherwise.

GetObjectTypeOk

func (o *FeedbackFeedbackPost) GetObjectTypeOk() (*string, bool)

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

SetObjectType

func (o *FeedbackFeedbackPost) SetObjectType(v string)

SetObjectType sets ObjectType field to given value.

GetFeedbackData

func (o *FeedbackFeedbackPost) GetFeedbackData() FeedbackFeedbackData

GetFeedbackData returns the FeedbackData field if non-nil, zero value otherwise.

GetFeedbackDataOk

func (o *FeedbackFeedbackPost) GetFeedbackDataOk() (*FeedbackFeedbackData, bool)

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

SetFeedbackData

func (o *FeedbackFeedbackPost) SetFeedbackData(v FeedbackFeedbackData)

SetFeedbackData sets FeedbackData field to given value.

HasFeedbackData

func (o *FeedbackFeedbackPost) HasFeedbackData() bool

HasFeedbackData returns a boolean if a field has been set.

SetFeedbackDataNil

func (o *FeedbackFeedbackPost) SetFeedbackDataNil(b bool)

SetFeedbackDataNil sets the value for FeedbackData to be an explicit nil

UnsetFeedbackData

func (o *FeedbackFeedbackPost) UnsetFeedbackData()

UnsetFeedbackData ensures that no value is present for FeedbackData, not even an explicit nil

GetAccount

func (o *FeedbackFeedbackPost) GetAccount() IamAccountRelationship

GetAccount returns the Account field if non-nil, zero value otherwise.

GetAccountOk

func (o *FeedbackFeedbackPost) GetAccountOk() (*IamAccountRelationship, bool)

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

SetAccount

func (o *FeedbackFeedbackPost) SetAccount(v IamAccountRelationship)

SetAccount sets Account field to given value.

HasAccount

func (o *FeedbackFeedbackPost) HasAccount() bool

HasAccount returns a boolean if a field has been set.

SetAccountNil

func (o *FeedbackFeedbackPost) SetAccountNil(b bool)

SetAccountNil sets the value for Account to be an explicit nil

UnsetAccount

func (o *FeedbackFeedbackPost) UnsetAccount()

UnsetAccount ensures that no value is present for Account, not even an explicit nil

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