Name | Type | Description | Notes |
---|---|---|---|
Object | string | Type of Object, always equals to "comment-reply" | |
Id | string | Unique identifier for the reply. | |
PostedBy | User | ||
PostedAt | string | ||
EditedAt | Pointer to string | [optional] | |
Reactions | []EmojiReaction | ||
Body | Document | ||
Urls | CommentReplyUrls |
func NewCommentReply(object string, id string, postedBy User, postedAt string, reactions []EmojiReaction, body Document, urls CommentReplyUrls, ) *CommentReply
NewCommentReply instantiates a new CommentReply 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
func NewCommentReplyWithDefaults() *CommentReply
NewCommentReplyWithDefaults instantiates a new CommentReply 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
func (o *CommentReply) GetObject() string
GetObject returns the Object field if non-nil, zero value otherwise.
func (o *CommentReply) GetObjectOk() (*string, bool)
GetObjectOk returns a tuple with the Object field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CommentReply) SetObject(v string)
SetObject sets Object field to given value.
func (o *CommentReply) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *CommentReply) GetIdOk() (*string, 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.
func (o *CommentReply) SetId(v string)
SetId sets Id field to given value.
func (o *CommentReply) GetPostedBy() User
GetPostedBy returns the PostedBy field if non-nil, zero value otherwise.
func (o *CommentReply) GetPostedByOk() (*User, bool)
GetPostedByOk returns a tuple with the PostedBy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CommentReply) SetPostedBy(v User)
SetPostedBy sets PostedBy field to given value.
func (o *CommentReply) GetPostedAt() string
GetPostedAt returns the PostedAt field if non-nil, zero value otherwise.
func (o *CommentReply) GetPostedAtOk() (*string, bool)
GetPostedAtOk returns a tuple with the PostedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CommentReply) SetPostedAt(v string)
SetPostedAt sets PostedAt field to given value.
func (o *CommentReply) GetEditedAt() string
GetEditedAt returns the EditedAt field if non-nil, zero value otherwise.
func (o *CommentReply) GetEditedAtOk() (*string, bool)
GetEditedAtOk returns a tuple with the EditedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CommentReply) SetEditedAt(v string)
SetEditedAt sets EditedAt field to given value.
func (o *CommentReply) HasEditedAt() bool
HasEditedAt returns a boolean if a field has been set.
func (o *CommentReply) GetReactions() []EmojiReaction
GetReactions returns the Reactions field if non-nil, zero value otherwise.
func (o *CommentReply) GetReactionsOk() (*[]EmojiReaction, bool)
GetReactionsOk returns a tuple with the Reactions field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CommentReply) SetReactions(v []EmojiReaction)
SetReactions sets Reactions field to given value.
func (o *CommentReply) GetBody() Document
GetBody returns the Body field if non-nil, zero value otherwise.
func (o *CommentReply) GetBodyOk() (*Document, bool)
GetBodyOk returns a tuple with the Body field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CommentReply) SetBody(v Document)
SetBody sets Body field to given value.
func (o *CommentReply) GetUrls() CommentReplyUrls
GetUrls returns the Urls field if non-nil, zero value otherwise.
func (o *CommentReply) GetUrlsOk() (*CommentReplyUrls, bool)
GetUrlsOk returns a tuple with the Urls field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CommentReply) SetUrls(v CommentReplyUrls)
SetUrls sets Urls field to given value.