|
| 1 | +namespace Stripe |
| 2 | +{ |
| 3 | + using Newtonsoft.Json; |
| 4 | + |
| 5 | + public class SourceKlarnaCreateOptions : INestedOptions |
| 6 | + { |
| 7 | + [JsonProperty("background_image_url")] |
| 8 | + public string BackgroundImageUrl { get; set; } |
| 9 | + |
| 10 | + [JsonProperty("client_token")] |
| 11 | + public string ClientToken { get; set; } |
| 12 | + |
| 13 | + [JsonProperty("first_name")] |
| 14 | + public string FirstName { get; set; } |
| 15 | + |
| 16 | + [JsonProperty("last_name")] |
| 17 | + public string LastName { get; set; } |
| 18 | + |
| 19 | + [JsonProperty("locale")] |
| 20 | + public string Locale { get; set; } |
| 21 | + |
| 22 | + [JsonProperty("logo_url")] |
| 23 | + public string LogoUrl { get; set; } |
| 24 | + |
| 25 | + [JsonProperty("page_title")] |
| 26 | + public string PageTitle { get; set; } |
| 27 | + |
| 28 | + [JsonProperty("pay_later_asset_urls_descriptive")] |
| 29 | + public string PayLaterAssetUrlsDescriptive { get; set; } |
| 30 | + |
| 31 | + [JsonProperty("pay_later_asset_urls_standard")] |
| 32 | + public string PayLaterAssetUrlsStandard { get; set; } |
| 33 | + |
| 34 | + [JsonProperty("pay_later_name")] |
| 35 | + public string PayLaterName { get; set; } |
| 36 | + |
| 37 | + [JsonProperty("pay_later_redirect_url")] |
| 38 | + public string PayLaterRedirectUrl { get; set; } |
| 39 | + |
| 40 | + [JsonProperty("pay_now_asset_urls_descriptive")] |
| 41 | + public string PayNowAssetUrlsDescriptive { get; set; } |
| 42 | + |
| 43 | + [JsonProperty("pay_now_asset_urls_standard")] |
| 44 | + public string PayNowAssetUrlsStandard { get; set; } |
| 45 | + |
| 46 | + [JsonProperty("pay_now_name")] |
| 47 | + public string PayNowName { get; set; } |
| 48 | + |
| 49 | + [JsonProperty("pay_now_redirect_url")] |
| 50 | + public string PayNowRedirectUrl { get; set; } |
| 51 | + |
| 52 | + [JsonProperty("pay_over_time_asset_urls_descriptive")] |
| 53 | + public string PayOverTimeAssetUrlsDescriptive { get; set; } |
| 54 | + |
| 55 | + [JsonProperty("pay_over_time_asset_urls_standard")] |
| 56 | + public string PayOverTimeAssetUrlsStandard { get; set; } |
| 57 | + |
| 58 | + [JsonProperty("pay_over_time_name")] |
| 59 | + public string PayOverTimeName { get; set; } |
| 60 | + |
| 61 | + [JsonProperty("pay_over_time_redirect_url")] |
| 62 | + public string PayOverTimeRedirectUrl { get; set; } |
| 63 | + |
| 64 | + [JsonProperty("payment_method_categories")] |
| 65 | + public string PaymentMethodCategories { get; set; } |
| 66 | + |
| 67 | + [JsonProperty("purchase_country")] |
| 68 | + public string PurchaseCountry { get; set; } |
| 69 | + |
| 70 | + [JsonProperty("purchase_type")] |
| 71 | + public string PurchaseType { get; set; } |
| 72 | + |
| 73 | + [JsonProperty("redirect_url")] |
| 74 | + public string RedirectUrl { get; set; } |
| 75 | + |
| 76 | + [JsonProperty("shipping_first_name")] |
| 77 | + public string ShippingFirstName { get; set; } |
| 78 | + |
| 79 | + [JsonProperty("shipping_last_name")] |
| 80 | + public string ShippingLastName { get; set; } |
| 81 | + } |
| 82 | +} |
0 commit comments