toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final activationReason = this.activationReason;
final cancellationReason = this.cancellationReason;
final changeType = this.changeType;
final createTime = this.createTime;
final entitlement = this.entitlement;
final offer = this.offer;
final operator = this.operator;
final operatorType = this.operatorType;
final otherChangeReason = this.otherChangeReason;
final parameters = this.parameters;
final provisionedService = this.provisionedService;
final suspensionReason = this.suspensionReason;
return {
'activationReason': ?activationReason,
'cancellationReason': ?cancellationReason,
'changeType': ?changeType,
'createTime': ?createTime,
'entitlement': ?entitlement,
'offer': ?offer,
'operator': ?operator,
'operatorType': ?operatorType,
'otherChangeReason': ?otherChangeReason,
'parameters': ?parameters,
'provisionedService': ?provisionedService,
'suspensionReason': ?suspensionReason,
};
}