toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final attributeNames = this.attributeNames;
  final objectReference = this.objectReference;
  final schemaFacet = this.schemaFacet;
  return {
    'AttributeNames': attributeNames,
    'ObjectReference': objectReference,
    'SchemaFacet': schemaFacet,
  };
}