public Transaction Charge(
Account from,
Account to,
Amount amount,
bool capture = true,
string description = null,
Object extraData = null
)
public Transaction Charge(
Account from,
Account to,
Amount amount,
bool capture = true,
string description = null,
Object extraData = null
)
Public Function Charge (
from As Account,
to As Account,
amount As Amount,
Optional capture As Boolean = true,
Optional description As String = Nothing,
Optional extraData As Object = Nothing
) As Transaction
Public Function Charge (
from As Account,
to As Account,
amount As Amount,
Optional capture As Boolean = true,
Optional description As String = Nothing,
Optional extraData As Object = Nothing
) As Transaction
public:
Transaction^ Charge(
Account from,
Account to,
Amount amount,
bool capture = true,
String^ description = nullptr,
Object^ extraData = nullptr
)
public:
Transaction^ Charge(
Account from,
Account to,
Amount amount,
bool capture = true,
String^ description = nullptr,
Object^ extraData = nullptr
)
member Charge :
from : Account *
to : Account *
amount : Amount *
?capture : bool *
?description : string *
?extraData : Object
(* Defaults:
let _capture = defaultArg capture true
let _description = defaultArg description null
let _extraData = defaultArg extraData null
*)
-> Transaction
member Charge :
from : Account *
to : Account *
amount : Amount *
?capture : bool *
?description : string *
?extraData : Object
(* Defaults:
let _capture = defaultArg capture true
let _description = defaultArg description null
let _extraData = defaultArg extraData null
*)
-> Transaction