Esempio n. 1
0
 public V1Merchant(string id          = null,
                   string name        = null,
                   string email       = null,
                   string accountType = null,
                   IList <string> accountCapabilities = null,
                   string countryCode                 = null,
                   string languageCode                = null,
                   string currencyCode                = null,
                   string businessName                = null,
                   Models.Address businessAddress     = null,
                   Models.V1PhoneNumber businessPhone = null,
                   string businessType                = null,
                   Models.Address shippingAddress     = null,
                   Models.V1MerchantLocationDetails locationDetails = null,
                   string marketUrl = null)
 {
     Id                  = id;
     Name                = name;
     Email               = email;
     AccountType         = accountType;
     AccountCapabilities = accountCapabilities;
     CountryCode         = countryCode;
     LanguageCode        = languageCode;
     CurrencyCode        = currencyCode;
     BusinessName        = businessName;
     BusinessAddress     = businessAddress;
     BusinessPhone       = businessPhone;
     BusinessType        = businessType;
     ShippingAddress     = shippingAddress;
     LocationDetails     = locationDetails;
     MarketUrl           = marketUrl;
 }
Esempio n. 2
0
 public Builder LocationDetails(Models.V1MerchantLocationDetails locationDetails)
 {
     this.locationDetails = locationDetails;
     return(this);
 }
Esempio n. 3
0
 public Builder LocationDetails(Models.V1MerchantLocationDetails value)
 {
     locationDetails = value;
     return(this);
 }