GetApiKeyResponse constructor

const GetApiKeyResponse({
  1. String? value,
  2. required int createdAt,
  3. required List<Acl> acl,
  4. String? description,
  5. List<String>? indexes,
  6. int? maxHitsPerQuery,
  7. int? maxQueriesPerIPPerHour,
  8. String? queryParameters,
  9. List<String>? referers,
  10. int? validity,
})

Returns a new GetApiKeyResponse instance.

Implementation

const GetApiKeyResponse({
  this.value,
  required this.createdAt,
  required this.acl,
  this.description,
  this.indexes,
  this.maxHitsPerQuery,
  this.maxQueriesPerIPPerHour,
  this.queryParameters,
  this.referers,
  this.validity,
});