toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authConfigId = this.authConfigId;
  final createTime = this.createTime;
  final deleteTime = this.deleteTime;
  final description = this.description;
  final displayName = this.displayName;
  final name = this.name;
  final serviceAuthority = this.serviceAuthority;
  final sfdcOrgId = this.sfdcOrgId;
  final updateTime = this.updateTime;
  return {
    'authConfigId': ?authConfigId,
    'createTime': ?createTime,
    'deleteTime': ?deleteTime,
    'description': ?description,
    'displayName': ?displayName,
    'name': ?name,
    'serviceAuthority': ?serviceAuthority,
    'sfdcOrgId': ?sfdcOrgId,
    'updateTime': ?updateTime,
  };
}