toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'account'] = this.account;
    json[r'policies'] = this.policies;
    json[r'licenses'] = this.licenses;
    json[r'machines'] = this.machines;
    json[r'users'] = this.users;
    json[r'tokens'] = this.tokens;
  return json;
}