DogeCoinAPI
DogeCoinAPI
Method
HTTP request
Description
createDogeCoinAccount
open class func createDogeCoinAccount(authorization: String, dogeCoinInput: DogeCoinInput, completion: @escaping (_ data: AccountAPIResponse?, _ error: Error?) -> Void)Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let authorization = "authorization_example" // String |
let dogeCoinInput = DogeCoinInput(network: "network_example", privateKey: "privateKey_example") // DogeCoinInput |
DogeCoinAPI.createDogeCoinAccount(authorization: authorization, dogeCoinInput: dogeCoinInput) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
getDogeCoinAccount
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
listDogeCoinAccounts
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
signDogeCoinTransaction
Example
Parameters
Name
Type
Description
Notes