Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion lib/generated/responses/cvs_authorization.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ class CvsAuthorization {
final String name1;
final String name2;
final String tel;
final String payLimit;
final DateTime payLimit;
final Account account;
final String haraikomiUrl;
final String receiptNo;
final DateTime? doneAt;
final DateTime? canceledAt;
CvsAuthorization({
required this.id,
required this.serviceOptionType,
Expand All @@ -22,6 +26,10 @@ class CvsAuthorization {
required this.tel,
required this.payLimit,
required this.account,
required this.haraikomiUrl,
required this.receiptNo,
this.doneAt,
this.canceledAt,
});

factory CvsAuthorization.fromJson(Map<String, dynamic> json) =>
Expand Down
16 changes: 14 additions & 2 deletions lib/generated/responses/cvs_authorization.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading