ActorGetStatusOutput constructor
- @JsonSerializable.new(includeIfNull: false)
const
ActorGetStatusOutput(
{ - required bool chatDisabled,
- required bool canCreateGroups,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory ActorGetStatusOutput({
/// True when the viewer's account is disabled and cannot actively participate in chat.
required bool chatDisabled,
/// Whether the viewer's account is allowed to create group chats. New accounts are restricted from creating groups.
required bool canCreateGroups,
Map<String, dynamic>? $unknown,
}) = _ActorGetStatusOutput;