TDeleteApiKeysBody constructor

const TDeleteApiKeysBody({
  1. String? timestampMs,
  2. String? organizationId,
  3. required String userId,
  4. required List<String> apiKeyIds,
})

Implementation

const TDeleteApiKeysBody({
  this.timestampMs,
  this.organizationId,
  required this.userId,
  required this.apiKeyIds,
});