Пример #1
0
 public void SetMonthlyBilling(string currency, bool clientPays, bool canPurchaseCredits, int markupPercentage, MonthlyScheme scheme)
 {
     SetMonthlyBilling(currency, clientPays, canPurchaseCredits, markupPercentage, (MonthlyScheme?)scheme);
 }
Пример #2
0
 private void SetMonthlyBilling(string currency, bool clientPays, bool canPurchaseCredits, int markupPercentage, MonthlyScheme? scheme)
 {
     HttpPut<BillingOptions, string>(
         string.Format("/clients/{0}/setmonthlybilling.json", ClientID), null,
         new BillingOptions()
         {
             Currency = currency,
             ClientPays = clientPays,
             CanPurchaseCredits = canPurchaseCredits,
             MarkupPercentage = markupPercentage,
             MonthlyScheme = scheme
         });
 }
Пример #3
0
 public void SetMonthlyBilling(string currency, bool clientPays, bool canPurchaseCredits, int markupPercentage, MonthlyScheme scheme)
 {
     SetMonthlyBilling(currency, clientPays, canPurchaseCredits, markupPercentage, (MonthlyScheme?)scheme);
 }