getAccountCouponDetail method
Implementation
Future<CouponDetail> getAccountCouponDetail({
required String accountId,
required String couponId,
}) async {
return await invokeMethod<CouponDetail>(
(j) => CouponDetail.fromJson(j),
'autogen_getAccountCouponDetail',
{
'env': this.env.index,
'accessToken': this.accessToken,
'account_id': accountId,
'coupon_id': couponId,
},
);
}