toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final checkId = this.checkId;
final registrationDocument = this.registrationDocument;
final registrationNumber = this.registrationNumber;
final registrationType = this.registrationType;
final rejectionReason = this.rejectionReason;
return {
'checkId': ?checkId,
'registrationDocument': ?registrationDocument,
'registrationNumber': ?registrationNumber,
'registrationType': ?registrationType,
'rejectionReason': ?rejectionReason,
};
}