class
Stripe::Transfer
- Stripe::Transfer
- Reference
- Object
Overview
https://stripe.com/docs/api/transfers/object
Included Modules
- JSON::Serializable
- StripeMethods
Defined in:
stripe/methods/core/transfers/create_transfer.crstripe/objects/core/transfer.cr
Constructors
- .create(amount : Int32, destination : String | Stripe::Account, currency : String, description : String | Nil = nil) : Transfer forall T, U
- .new(pull : JSON::PullParser)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Class Method Summary
Instance Method Summary
- #amount : Int32
- #amount_reversed : Int32
- #balance_transaction : String | Nil
- #created : Time | Nil
- #currency : String | Nil
- #description : String | Nil
- #destination : String | Nil
- #destination_payment : String | Nil
- #id : String
- #livemode? : Bool
- #metadata : Hash(String, String) | Nil
- #reversed? : Bool
- #source_transaction : String | Nil
- #source_type : String | Nil
- #transfer_group : String | Nil
Macros inherited from module StripeMethods
add_delete_method
add_delete_method,
add_list_method(*arguments)
add_list_method,
add_retrieve_method
add_retrieve_method
Constructor Detail
def self.create(amount : Int32, destination : String | Stripe::Account, currency : String, description : String | Nil = nil) : Transfer forall T, U
#