subscription_resume_response.dart 490 B

1234567891011121314151617181920
  1. import 'package:json_annotation/json_annotation.dart';
  2. import '../../bean/payment_way.dart';
  3. import '../../bean/store_item.dart';
  4. part 'subscription_resume_response.g.dart';
  5. @JsonSerializable()
  6. class SubscriptionResumeResponse {
  7. @JsonKey(name: 'code')
  8. int? code;
  9. @JsonKey(name: 'msg')
  10. String? msg;
  11. SubscriptionResumeResponse(this.code, this.msg);
  12. factory SubscriptionResumeResponse.fromJson(Map<String, dynamic> json) =>
  13. _$SubscriptionResumeResponseFromJson(json);
  14. }