toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'object'] = this.object;
  json[r'id'] = this.id;
  json[r'name'] = this.name;
  json[r'claims'] = this.claims;
  json[r'lifetime'] = this.lifetime;
  json[r'allowed_clock_skew'] = this.allowedClockSkew;
  json[r'custom_signing_key'] = this.customSigningKey;
  json[r'signing_algorithm'] = this.signingAlgorithm;
  json[r'created_at'] = this.createdAt;
  json[r'updated_at'] = this.updatedAt;
  return json;
}