コード例 #1
0
 public PayUrlUpdateInfo(string name, string currency, TransactionSpeed transactionSpeed = TransactionSpeed.Medium, PayUrlExpiry urlExpiry = PayUrlExpiry.None, long?orderId = null, decimal?orderprice = null, string description = null, string notificationemail = null, string notificationUrl = null, string redirecturl = null)
 {
     this.UrlName           = name;
     this.OrderCurrency     = currency;
     this.TransactionSpeed  = transactionSpeed;
     this.UrlExpiry         = urlExpiry;
     this.OrderId           = orderId;
     this.OrderPrice        = orderprice;
     this.NotificationEmail = notificationemail;
     this.NotificationUrl   = notificationUrl;
     this.RedirectUrl       = redirecturl;
 }
コード例 #2
0
 public PayUrlCreationInfo(string name, string currency, TransactionSpeed transactionSpeed = TransactionSpeed.Medium, PayUrlExpiry urlExpiry = PayUrlExpiry.None, long?orderId = null, decimal?orderprice = null, string description = null, string notificationemail = null, string notificationUrl = null, string redirecturl = null) :
     base(name, currency, transactionSpeed, urlExpiry, orderId, orderprice, description, notificationemail, notificationUrl, redirecturl)
 {
 }