PaywayPartnerCheckMerchantResponse constructor

PaywayPartnerCheckMerchantResponse({
  1. required String data,
  2. required PaywayPartnerCheckMerchantResponseStatus status,
})

data: will be need to decode from base64 string to get We will response below fields as encryption text:

  • partner_name
  • merchant_name
  • mid
  • merchant_key
  • public_key
  • register_ref
  • currency
  • rsa_public_key

status: will be json format like

Code:00, msg: success

Code:PTL02, msg: wrong hash

Code:PTL06, msg: The Request is Expired

Implementation

PaywayPartnerCheckMerchantResponse({
  required this.data,
  required this.status,
});