VerificationRevokeVerificationsInput constructor 
    
      
  
    
        - @JsonSerializable.new(includeIfNull: false)
 const
      
VerificationRevokeVerificationsInput(
{ - @AtUriConverter.new() required List<AtUri> uris, 
- String? revokeReason, 
- 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;