purpose property

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

TelegramPaymentPurpose get purpose {
  try {
    if (rawData["purpose"] is Map == false) {
      return TelegramPaymentPurpose({});
    }
    return TelegramPaymentPurpose(rawData["purpose"] as Map);
  } catch (e) {
    return TelegramPaymentPurpose({});
  }
}
set purpose (TelegramPaymentPurpose value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set purpose(TelegramPaymentPurpose value) {
  rawData["purpose"] = value.toJson();
}