toJson method
Implementation
Map<String, dynamic> toJson() {
final objectAttributeList = this.objectAttributeList;
final schemaFacet = this.schemaFacet;
final batchReferenceName = this.batchReferenceName;
final linkName = this.linkName;
final parentReference = this.parentReference;
return {
'ObjectAttributeList': objectAttributeList,
'SchemaFacet': schemaFacet,
if (batchReferenceName != null) 'BatchReferenceName': batchReferenceName,
if (linkName != null) 'LinkName': linkName,
if (parentReference != null) 'ParentReference': parentReference,
};
}