subscription_resume_response.dart 414 B

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