@@ -7,43 +7,43 @@ namespace Stripe.Checkout
7
7
public class SessionCustomerDetails : StripeEntity < SessionCustomerDetails >
8
8
{
9
9
/// <summary>
10
- /// The customer's address at the time of checkout . Note: This property is populated only
11
- /// for sessions on or after March 30, 2022.
10
+ /// The customer's address after a completed Checkout Session . Note: This property is
11
+ /// populated only for sessions on or after March 30, 2022.
12
12
/// </summary>
13
13
[ JsonProperty ( "address" ) ]
14
14
public Address Address { get ; set ; }
15
15
16
16
/// <summary>
17
- /// The email associated with the Customer, if one exists, on the Checkout Session at the
18
- /// time of checkout or at time of session expiry. Otherwise, if the customer has consented
19
- /// to promotional content, this value is the most recent valid email provided by the
20
- /// customer on the Checkout form.
17
+ /// The email associated with the Customer, if one exists, on the Checkout Session after a
18
+ /// completed Checkout Session or at time of session expiry. Otherwise, if the customer has
19
+ /// consented to promotional content, this value is the most recent valid email provided by
20
+ /// the customer on the Checkout form.
21
21
/// </summary>
22
22
[ JsonProperty ( "email" ) ]
23
23
public string Email { get ; set ; }
24
24
25
25
/// <summary>
26
- /// The customer's name at the time of checkout . Note: This property is populated only for
27
- /// sessions on or after March 30, 2022.
26
+ /// The customer's name after a completed Checkout Session . Note: This property is populated
27
+ /// only for sessions on or after March 30, 2022.
28
28
/// </summary>
29
29
[ JsonProperty ( "name" ) ]
30
30
public string Name { get ; set ; }
31
31
32
32
/// <summary>
33
- /// The customer's phone number at the time of checkout .
33
+ /// The customer's phone number after a completed Checkout Session .
34
34
/// </summary>
35
35
[ JsonProperty ( "phone" ) ]
36
36
public string Phone { get ; set ; }
37
37
38
38
/// <summary>
39
- /// The customer’s tax exempt status at time of checkout .
39
+ /// The customer’s tax exempt status after a completed Checkout Session .
40
40
/// One of: <c>exempt</c>, <c>none</c>, or <c>reverse</c>.
41
41
/// </summary>
42
42
[ JsonProperty ( "tax_exempt" ) ]
43
43
public string TaxExempt { get ; set ; }
44
44
45
45
/// <summary>
46
- /// The customer’s tax IDs at time of checkout .
46
+ /// The customer’s tax IDs after a completed Checkout Session .
47
47
/// </summary>
48
48
[ JsonProperty ( "tax_ids" ) ]
49
49
public List < SessionCustomerDetailsTaxId > TaxIds { get ; set ; }
0 commit comments