ApiKeysInput constructor

ApiKeysInput({
  1. String? userId,
  2. required String companyId,
  3. required int roleId,
  4. String? keyType,
  5. bool? isSystemGenerated,
  6. String? mcpDeploymentId,
  7. String? endpointId,
  8. String? name,
  9. DateTime? expirationDateUtc,
})

Returns a new ApiKeysInput instance.

Implementation

ApiKeysInput({
  this.userId,
  required this.companyId,
  required this.roleId,
  this.keyType,
  this.isSystemGenerated,
  this.mcpDeploymentId,
  this.endpointId,
  this.name,
  this.expirationDateUtc,
});