VerificationRevokeVerificationsInput constructor

  1. @JsonSerializable(includeIfNull: false)
const VerificationRevokeVerificationsInput({
  1. @AtUriConverter() required List<AtUri> uris,
  2. String? revokeReason,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory VerificationRevokeVerificationsInput({
  /// The AT-URI of the verification record to revoke.
  @AtUriConverter() required List<AtUri> uris,

  /// Reason for revoking the verification. This is optional and can be omitted if not needed.
  String? revokeReason,

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