Class Token

java.lang.Object
All Implemented Interfaces:
HasId, StripeObjectInterface

public class Token
extends ApiResource
implements HasId
  • Constructor Details

  • Method Details

    • retrieve

      public static Token retrieve​(java.lang.String token) throws StripeException
      Retrieves the token with the given ID.
      Throws:
      StripeException
    • retrieve

      public static Token retrieve​(java.lang.String token, RequestOptions options) throws StripeException
      Retrieves the token with the given ID.
      Throws:
      StripeException
    • retrieve

      public static Token retrieve​(java.lang.String token, java.util.Map<java.lang.String,​java.lang.Object> params, RequestOptions options) throws StripeException
      Retrieves the token with the given ID.
      Throws:
      StripeException
    • retrieve

      public static Token retrieve​(java.lang.String token, TokenRetrieveParams params, RequestOptions options) throws StripeException
      Retrieves the token with the given ID.
      Throws:
      StripeException
    • create

      public static Token create​(java.util.Map<java.lang.String,​java.lang.Object> params) throws StripeException
      Creates a single-use token that represents a bank account’s details. This token can be used with any API method in place of a bank account dictionary. This token can be used only once, by attaching it to a Custom account.
      Throws:
      StripeException
    • create

      public static Token create​(java.util.Map<java.lang.String,​java.lang.Object> params, RequestOptions options) throws StripeException
      Creates a single-use token that represents a bank account’s details. This token can be used with any API method in place of a bank account dictionary. This token can be used only once, by attaching it to a Custom account.
      Throws:
      StripeException
    • create

      public static Token create​(TokenCreateParams params) throws StripeException
      Creates a single-use token that represents a bank account’s details. This token can be used with any API method in place of a bank account dictionary. This token can be used only once, by attaching it to a Custom account.
      Throws:
      StripeException
    • create

      public static Token create​(TokenCreateParams params, RequestOptions options) throws StripeException
      Creates a single-use token that represents a bank account’s details. This token can be used with any API method in place of a bank account dictionary. This token can be used only once, by attaching it to a Custom account.
      Throws:
      StripeException
    • getBankAccount

      public BankAccount getBankAccount()
    • getCard

      public Card getCard()
    • getClientIp

      public java.lang.String getClientIp()
      IP address of the client that generated the token.
    • getCreated

      public java.lang.Long getCreated()
      Time at which the object was created. Measured in seconds since the Unix epoch.
    • getEmail

      public java.lang.String getEmail()
      Email of the user, whose token is created during Stripe Checkout. This field is non-standard, and maybe removed in the future.
    • getLivemode

      public java.lang.Boolean getLivemode()
      Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
    • getObject

      public java.lang.String getObject()
      String representing the object's type. Objects of the same type share the same value.

      Equal to `token`.

    • getType

      public java.lang.String getType()
      Type of the token: `account`, `bank_account`, `card`, or `pii`.
    • getUsed

      public java.lang.Boolean getUsed()
      Whether this token has already been used (tokens can be used only once).
    • setBankAccount

      public void setBankAccount​(BankAccount bankAccount)
    • setCard

      public void setCard​(Card card)
    • setClientIp

      public void setClientIp​(java.lang.String clientIp)
      IP address of the client that generated the token.
    • setCreated

      public void setCreated​(java.lang.Long created)
      Time at which the object was created. Measured in seconds since the Unix epoch.
    • setEmail

      public void setEmail​(java.lang.String email)
      Email of the user, whose token is created during Stripe Checkout. This field is non-standard, and maybe removed in the future.
    • setId

      public void setId​(java.lang.String id)
      Unique identifier for the object.
    • setLivemode

      public void setLivemode​(java.lang.Boolean livemode)
      Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
    • setObject

      public void setObject​(java.lang.String object)
      String representing the object's type. Objects of the same type share the same value.

      Equal to `token`.

    • setType

      public void setType​(java.lang.String type)
      Type of the token: `account`, `bank_account`, `card`, or `pii`.
    • setUsed

      public void setUsed​(java.lang.Boolean used)
      Whether this token has already been used (tokens can be used only once).
    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object
    • canEqual

      protected boolean canEqual​(java.lang.Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • getId

      public java.lang.String getId()
      Unique identifier for the object.
      Specified by:
      getId in interface HasId