Fucking tag
This commit is contained in:
@@ -66,16 +66,16 @@ configuration = board_mate.mail.Configuration(
|
||||
# Enter a context with an instance of the API client
|
||||
with board_mate.mail.ApiClient(configuration) as api_client:
|
||||
# Create an instance of the API class
|
||||
api_instance = board_mate.mail.DefaultApi(api_client)
|
||||
api_instance = board_mate.mail.MailApi(api_client)
|
||||
body = 'body_example' # str |
|
||||
|
||||
try:
|
||||
# POST mail/send
|
||||
api_response = api_instance.send(body)
|
||||
print("The response of DefaultApi->send:\n")
|
||||
print("The response of MailApi->send:\n")
|
||||
pprint(api_response)
|
||||
except ApiException as e:
|
||||
print("Exception when calling DefaultApi->send: %s\n" % e)
|
||||
print("Exception when calling MailApi->send: %s\n" % e)
|
||||
|
||||
```
|
||||
|
||||
@@ -85,7 +85,7 @@ All URIs are relative to *https://boardmate_api*
|
||||
|
||||
Class | Method | HTTP request | Description
|
||||
------------ | ------------- | ------------- | -------------
|
||||
*DefaultApi* | [**send**](docs/DefaultApi.md#send) | **POST** /mail/send | POST mail/send
|
||||
*MailApi* | [**send**](docs/MailApi.md#send) | **POST** /mail/send | POST mail/send
|
||||
|
||||
|
||||
## Documentation For Models
|
||||
|
||||
Reference in New Issue
Block a user