Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.69 KB

Comment.md

File metadata and controls

108 lines (59 loc) · 2.69 KB

Comment

Properties

Name Type Description Notes
CommentKey Pointer to string [optional]
VideoId Pointer to string [optional]
Message Pointer to string [optional]

Methods

NewComment

func NewComment() *Comment

NewComment instantiates a new Comment 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

NewCommentWithDefaults

func NewCommentWithDefaults() *Comment

NewCommentWithDefaults instantiates a new Comment 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

GetCommentKey

func (o *Comment) GetCommentKey() string

GetCommentKey returns the CommentKey field if non-nil, zero value otherwise.

GetCommentKeyOk

func (o *Comment) GetCommentKeyOk() (*string, bool)

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

SetCommentKey

func (o *Comment) SetCommentKey(v string)

SetCommentKey sets CommentKey field to given value.

HasCommentKey

func (o *Comment) HasCommentKey() bool

HasCommentKey returns a boolean if a field has been set.

GetVideoId

func (o *Comment) GetVideoId() string

GetVideoId returns the VideoId field if non-nil, zero value otherwise.

GetVideoIdOk

func (o *Comment) GetVideoIdOk() (*string, bool)

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

SetVideoId

func (o *Comment) SetVideoId(v string)

SetVideoId sets VideoId field to given value.

HasVideoId

func (o *Comment) HasVideoId() bool

HasVideoId returns a boolean if a field has been set.

GetMessage

func (o *Comment) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *Comment) GetMessageOk() (*string, bool)

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

SetMessage

func (o *Comment) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *Comment) HasMessage() bool

HasMessage returns a boolean if a field has been set.

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