ServerCreateAppPasswordInput constructor

  1. @JsonSerializable(includeIfNull: false)
const ServerCreateAppPasswordInput({
  1. required String name,
  2. bool? privileged,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ServerCreateAppPasswordInput({
  /// A short name for the App Password, to help distinguish them.
  required String name,

  /// If an app password has 'privileged' access to possibly sensitive account state. Meant for use with trusted clients.
  bool? privileged,

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