Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /** A merchant-supplied reference for the transaction */
  2. @property (nonatomic, strong) NSString *reference;
  3.  
  4. /** The type of the transaction, see `ADYTransactionType` for details. Defaults to ADYTransactionTypeGoodsServices. */
  5. @property (nonatomic, assign) ADYTransactionType transactionType;
  6.  
  7. /** The currency to use on the transaction. */
  8. @property (nonatomic, strong) NSString *currency;
  9.  
  10. /** The amount to process on the transaction in minor units (cents). */
  11. @property (nonatomic, strong) NSNumber *amount;
  12.  
  13. /** Gratuity amount in cents, or `nil` if no gratuity desired. */
  14. @property (nonatomic, strong) NSNumber *gratuity;
  15.  
  16. /** Locale of the transaction, or `nil` to use default locale. */
  17. @property (nonatomic, strong) NSLocale *locale;
  18.  
  19. /** Store identifier. */
  20. @property (nonatomic, strong) NSString *store;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement