ListConversationReports constructor
- @JsonSerializable.new(includeIfNull: false)
const
ListConversationReports(
{ - @JsonKey.new(name: 'conversation_id') int? conversationId,
- int? limit,
- int? page,
- @JsonKey.new(name: 'unresolved_only') bool? unresolvedOnly,
- @JsonKey.new(name: 'message_history_limit') int? messageHistoryLimit,
- required String auth,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory ListConversationReports({
@JsonKey(name: 'conversation_id') int? conversationId,
int? limit,
int? page,
@JsonKey(name: 'unresolved_only') bool? unresolvedOnly,
@JsonKey(name: 'message_history_limit') int? messageHistoryLimit,
required String auth,
}) = _ListConversationReports;