| 123456789101112131415161718192021 |
- import 'package:clean/base/base_request.dart';
- import 'package:json_annotation/json_annotation.dart';
- part 'attr_push_request.g.dart';
- @JsonSerializable()
- class AttrPushRequest extends BaseRequest {
- @JsonKey(name: 'clientType')
- String clientType;
- @JsonKey(name: 'clientId')
- String clientId;
- @JsonKey(name: 'resultJson')
- String resultJson;
- AttrPushRequest(this.resultJson, this.clientId, this.clientType);
- @override
- Map<String, dynamic> toJson() => _$AttrPushRequestToJson(this);
- }
|