SuggestedPostDeclined constructor

const SuggestedPostDeclined({
  1. @JsonKey.new(name: 'suggested_post_message') Message? suggestedPostMessage,
  2. @JsonKey.new(name: 'comment') String? comment,
})

Creates a new SuggestedPostDeclined object.

Implementation

const factory SuggestedPostDeclined({
  /// Optional. Message containing the suggested post. Note that the Message object in this field will not contain the reply_to_message field even if it itself is a reply.
  @JsonKey(name: 'suggested_post_message') Message? suggestedPostMessage,

  /// Optional. Comment with which the post was declined
  @JsonKey(name: 'comment') String? comment,
}) = _SuggestedPostDeclined;