UGoldApiTokenResponse constructor

UGoldApiTokenResponse({
  1. required String id,
  2. required List<String> scopes,
  3. required List<String> ipWhitelist,
  4. required bool active,
  5. String? tokenPrefix,
  6. String? label,
  7. DateTime? expiresAt,
  8. DateTime? createdAt,
  9. String? rawToken,
})

Implementation

UGoldApiTokenResponse({
  required this.id,
  required this.scopes,
  required this.ipWhitelist,
  required this.active,
  this.tokenPrefix,
  this.label,
  this.expiresAt,
  this.createdAt,
  this.rawToken,
});