Class CustomerTokenDetails
Customer token details object
Inheritance
System.Object
    CustomerTokenDetails
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: Klarna.Rest.Core.Model
Assembly: Klarna.Rest.Core.dll
Syntax
public class CustomerTokenDetails
  Properties
| Improve this Doc View SourceCardDetails
The card details of the token. Is only populated if the token is a card-token
Declaration
[JsonProperty(PropertyName = "card")]
public CustomerTokenCardDetails CardDetails { get; set; }
  Property Value
| Type | Description | 
|---|---|
| CustomerTokenCardDetails | The card details.  | 
      
DirectDebitTokenDetails
The direct debit details of the token. Is only populated if the token is based on direct debit
Declaration
[JsonProperty(PropertyName = "direct_debit")]
public CustomerDirectDebitTokenDetails DirectDebitTokenDetails { get; set; }
  Property Value
| Type | Description | 
|---|---|
| CustomerDirectDebitTokenDetails | The direct debit token details.  | 
      
PaymentMethodType
Selected payment method
Declaration
[JsonProperty(PropertyName = "payment_method_type")]
public string PaymentMethodType { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Remarks
Required
Status
Status of token, can be active, cancelled, suspended
Declaration
[JsonProperty(PropertyName = "status")]
public string Status { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Remarks
Required