| 1076 | } |
| 1077 | |
| 1078 | StarRefProgram ParseStarRefProgram(const MTPStarRefProgram *program) { |
| 1079 | if (!program) { |
| 1080 | return {}; |
| 1081 | } |
| 1082 | auto result = StarRefProgram(); |
| 1083 | const auto &data = program->data(); |
| 1084 | result.commission = data.vcommission_permille().v; |
| 1085 | result.durationMonths = data.vduration_months().value_or_empty(); |
| 1086 | result.revenuePerUser = CreditsAmountFromTL( |
| 1087 | data.vdaily_revenue_per_user()); |
| 1088 | result.endDate = data.vend_date().value_or_empty(); |
| 1089 | return result; |
| 1090 | } |
| 1091 | |
| 1092 | Ui::BotVerifyDetails ParseBotVerifyDetails(const MTPBotVerification *info) { |
| 1093 | if (!info) { |
no test coverage detected