toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final objectReference = this.objectReference;
  final filterAttributeRanges = this.filterAttributeRanges;
  final filterTypedLink = this.filterTypedLink;
  final maxResults = this.maxResults;
  final nextToken = this.nextToken;
  return {
    'ObjectReference': objectReference,
    if (filterAttributeRanges != null)
      'FilterAttributeRanges': filterAttributeRanges,
    if (filterTypedLink != null) 'FilterTypedLink': filterTypedLink,
    if (maxResults != null) 'MaxResults': maxResults,
    if (nextToken != null) 'NextToken': nextToken,
  };
}