toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'name'] = this.name;
  json[r'scoped_machines'] = this.scopedMachines;
  json[r'default_token_ttl'] = this.defaultTokenTtl;
  return json;
}