toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final actionType = this.actionType;
  final condition = this.condition;
  final description = this.description;
  final displayName = this.displayName;
  final methodTypes = this.methodTypes;
  final name = this.name;
  final resourceTypes = this.resourceTypes;
  final updateTime = this.updateTime;
  return {
    'actionType': ?actionType,
    'condition': ?condition,
    'description': ?description,
    'displayName': ?displayName,
    'methodTypes': ?methodTypes,
    'name': ?name,
    'resourceTypes': ?resourceTypes,
    'updateTime': ?updateTime,
  };
}