toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (justificatifDocumentNumber != null) {
json[r'justificatifDocumentNumber'] = justificatifDocumentNumber;
}
if (supportSerialNumber != null) {
json[r'supportSerialNumber'] = supportSerialNumber;
}
if (timeReadingEIdDocument != null) {
json[r'timeReadingEIdDocument'] = timeReadingEIdDocument;
}
json[r'eidDocumentSupportType'] = eidDocumentSupportType;
json[r'reasonManualEncoding'] = reasonManualEncoding;
json[r'reasonUsingVignette'] = reasonUsingVignette;
return json;
}