Class IssuedCard


  • public class IssuedCard
    extends java.lang.Object
    • Method Detail

      • issuedCardID

        public java.lang.String issuedCardID()
      • brand

        public CardBrand brand()
        The card brand.
      • lastFourCardNumber

        public java.lang.String lastFourCardNumber()
      • expiration

        public CardExpiration expiration()
        The expiration date of the card or token.
      • authorizedUser

        public AuthorizedUser authorizedUser()
        Fields for identifying an authorized individual.
      • memo

        public java.util.Optional<java.lang.String> memo()
        Optional descriptor for the card.
      • fundingWalletID

        public java.lang.String fundingWalletID()
        Unique identifier for the wallet funding the card.
      • state

        public IssuedCardState state()
        The `state` represents the operational status of an issued card. A card can only approve incoming authorizations if it is in an active state.

        - `active`: The card is operational and approves authorizations. Generally becomes active shortly after card creation. - `inactive`: The card cannot approve authorizations. This is currently a temporary state assigned post-creation during the activation process. - `closed`: The card is permanently deactivated and cannot approve authorizations. A card can be closed by request or when it expires. - `pending-verification`: Awaiting additional authorized user verification before the card can be activated.

      • formFactor

        public IssuedCardFormFactor formFactor()
        Specifies the type of spend card to be issued. Presently supports virtual only, providing a digital number without a physical card.
      • createdOn

        public java.time.OffsetDateTime createdOn()
      • withIssuedCardID

        public IssuedCard withIssuedCardID​(java.lang.String issuedCardID)
      • withLastFourCardNumber

        public IssuedCard withLastFourCardNumber​(java.lang.String lastFourCardNumber)
      • withExpiration

        public IssuedCard withExpiration​(CardExpiration expiration)
        The expiration date of the card or token.
      • withAuthorizedUser

        public IssuedCard withAuthorizedUser​(AuthorizedUser authorizedUser)
        Fields for identifying an authorized individual.
      • withMemo

        public IssuedCard withMemo​(java.lang.String memo)
        Optional descriptor for the card.
      • withMemo

        public IssuedCard withMemo​(java.util.Optional<java.lang.String> memo)
        Optional descriptor for the card.
      • withFundingWalletID

        public IssuedCard withFundingWalletID​(java.lang.String fundingWalletID)
        Unique identifier for the wallet funding the card.
      • withState

        public IssuedCard withState​(IssuedCardState state)
        The `state` represents the operational status of an issued card. A card can only approve incoming authorizations if it is in an active state.

        - `active`: The card is operational and approves authorizations. Generally becomes active shortly after card creation. - `inactive`: The card cannot approve authorizations. This is currently a temporary state assigned post-creation during the activation process. - `closed`: The card is permanently deactivated and cannot approve authorizations. A card can be closed by request or when it expires. - `pending-verification`: Awaiting additional authorized user verification before the card can be activated.

      • withFormFactor

        public IssuedCard withFormFactor​(IssuedCardFormFactor formFactor)
        Specifies the type of spend card to be issued. Presently supports virtual only, providing a digital number without a physical card.
      • withCreatedOn

        public IssuedCard withCreatedOn​(java.time.OffsetDateTime createdOn)
      • equals

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

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

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object