Class IdSource

    • Field Summary

    • Constructor Summary

      Constructors 
      Constructor Description
      IdSource()  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static IdSource.IdSourceBuilder builder()  
      protected boolean canEqual​(java.lang.Object other)  
      boolean equals​(java.lang.Object o)  
      java.lang.String getCvvToken()
      The unique token for the card's security code.
      java.lang.String getId()
      The unique identifier of the payment instrument (Required, pattern ^(src)_(\w{26})$)
      int hashCode()  
      void setCvvToken​(java.lang.String cvvToken)
      The unique token for the card's security code.
      void setId​(java.lang.String id)
      The unique identifier of the payment instrument (Required, pattern ^(src)_(\w{26})$)
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • IdSource

        public IdSource()
    • Method Detail

      • getId

        public java.lang.String getId()
        The unique identifier of the payment instrument (Required, pattern ^(src)_(\w{26})$)
      • getCvvToken

        public java.lang.String getCvvToken()
        The unique token for the card's security code. Checkout.com does not store a card's Card Verification Value (CVV) with its associated payment instrument. To pass a CVV with your forward request, use the Frames SDK for Android or iOS to collect and tokenize the CVV and pass the value in this field. The token will replace the placeholder {{card_cvv}} value in destination_request.body (Optional, pattern ^(tok)_(\w{26})$)
      • setId

        public void setId​(java.lang.String id)
        The unique identifier of the payment instrument (Required, pattern ^(src)_(\w{26})$)
      • setCvvToken

        public void setCvvToken​(java.lang.String cvvToken)
        The unique token for the card's security code. Checkout.com does not store a card's Card Verification Value (CVV) with its associated payment instrument. To pass a CVV with your forward request, use the Frames SDK for Android or iOS to collect and tokenize the CVV and pass the value in this field. The token will replace the placeholder {{card_cvv}} value in destination_request.body (Optional, pattern ^(tok)_(\w{26})$)
      • equals

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

        protected boolean canEqual​(java.lang.Object other)
        Overrides:
        canEqual in class AbstractSource