ServerDescribeServerOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const ServerDescribeServerOutput({
  1. bool? inviteCodeRequired,
  2. bool? phoneVerificationRequired,
  3. required List<String> availableUserDomains,
  4. @LinksConverter() Links? links,
  5. @ContactConverter() Contact? contact,
  6. required String did,
  7. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ServerDescribeServerOutput({
  /// If true, an invite code must be supplied to create an account on this instance.
  bool? inviteCodeRequired,

  /// If true, a phone verification token must be supplied to create an account on this instance.
  bool? phoneVerificationRequired,
  required List<String> availableUserDomains,

  /// URLs of service policy documents.
  @LinksConverter() Links? links,

  /// Contact information
  @ContactConverter() Contact? contact,
  required String did,

  Map<String, dynamic>? $unknown,
}) = _ServerDescribeServerOutput;