Exemplo n.º 1
0
 public PaymentItem(
     string label,
     PaymentCurrencyAmount amount,
     bool pending = false)
 {
     this.label   = label;
     this.amount  = amount;
     this.pending = pending;
 }
 public PaymentShippingOptions(
     string id,
     string label,
     PaymentCurrencyAmount amount,
     bool selected = false)
 {
     this.id       = id;
     this.label    = label;
     this.amount   = amount;
     this.selected = selected;
 }