Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.58 KB | None | 0 0
  1. @interface WDPaymentResponse : WDPayment
  2.  
  3. /** Indicates transaction state as enumerated in WDTransactionState. */
  4. @property (assign, nonatomic) WDTransactionState transactionState;
  5.  
  6. /** A unique identifier assigned for every Transaction. */
  7. @property (strong, nonatomic, nullable) NSString *transactionIdentifier;
  8.  
  9. /** Nonsensitive card data */
  10. @property (strong, nonatomic, nullable) WDCard *card;
  11.  
  12. /** Tokenized sensitive card data */
  13. @property (strong, nonatomic, nullable) WDCardToken *cardToken;
  14.  
  15.  
  16. /**  */
  17. @property (strong, nonatomic, nullable) NSString *statusMessage;
  18.  
  19. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement