// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/newimportOpenAPIClientlet authorization ="authorization_example"// String | let litecoinInput =LitecoinInput(network:"network_example", privateKey:"privateKey_example")// LitecoinInput | LitecoinAPI.createLitecoinAccount(authorization: authorization, litecoinInput: litecoinInput) { (response, error) inguard error ==nilelse {print(error)return }if(response) {dump(response) }}
Parameters
Name
Type
Description
Notes
authorization
String
litecoinInput
LitecoinInput
Return type
AccountAPIResponse
Authorization
ApiKeyAuth, BearerAuth
HTTP request headers
Content-Type: application/json
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/newimportOpenAPIClientlet authorization ="authorization_example"// String | let accountName ="accountName_example"// String | LitecoinAPI.getLitecoinAccount(authorization: authorization, accountName: accountName) { (response, error) inguard error ==nilelse {print(error)return }if(response) {dump(response) }}
Parameters
Name
Type
Description
Notes
authorization
String
accountName
String
Return type
AccountAPIResponse
Authorization
ApiKeyAuth, BearerAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/newimportOpenAPIClientlet authorization ="authorization_example"// String | LitecoinAPI.listLitecoinAccounts(authorization: authorization) { (response, error) inguard error ==nilelse {print(error)return }if(response) {dump(response) }}
Parameters
Name
Type
Description
Notes
authorization
String
Return type
AccountAPIResponse
Authorization
ApiKeyAuth, BearerAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]