ServerCreateAppPasswordInput constructor 
    
      
  
    
        - @JsonSerializable.new(includeIfNull: false)
 const
      
ServerCreateAppPasswordInput(
{ - required String name, 
- bool? privileged, 
- 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;