MessagePaymentSuccessful.fromJson constructor
Parse from a json
Implementation
factory MessagePaymentSuccessful.fromJson(Map<String, dynamic> json) => MessagePaymentSuccessful(
invoiceChatId: json['invoice_chat_id'],
invoiceMessageId: json['invoice_message_id'],
currency: json['currency'],
totalAmount: json['total_amount'],
);