mailslurp_client 5.0.0 → 7.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -0
  3. data/README.md +127 -40
  4. data/docs/AttachmentControllerApi.md +124 -0
  5. data/docs/AttachmentMetaData.md +23 -0
  6. data/docs/BasicAuthOptions.md +10 -0
  7. data/docs/BulkActionsControllerApi.md +165 -0
  8. data/docs/BulkSendEmailOptions.md +11 -1
  9. data/docs/CommonActionsControllerApi.md +167 -0
  10. data/docs/ContactControllerApi.md +274 -0
  11. data/docs/ContactDto.md +31 -0
  12. data/docs/ContactProjection.md +27 -0
  13. data/docs/CreateContactOptions.md +31 -0
  14. data/docs/CreateDomainOptions.md +17 -0
  15. data/docs/CreateGroupOptions.md +19 -0
  16. data/docs/CreateTemplateOptions.md +19 -0
  17. data/docs/CreateWebhookOptions.md +13 -2
  18. data/docs/DomainControllerApi.md +223 -0
  19. data/docs/DomainDto.md +29 -0
  20. data/docs/DomainPreview.md +21 -0
  21. data/docs/Email.md +40 -15
  22. data/docs/EmailAnalysis.md +18 -5
  23. data/docs/EmailControllerApi.md +740 -0
  24. data/docs/EmailPreview.md +24 -6
  25. data/docs/EmailProjection.md +33 -0
  26. data/docs/ForwardEmailOptions.md +12 -0
  27. data/docs/GroupContactsDto.md +19 -0
  28. data/docs/GroupControllerApi.md +437 -0
  29. data/docs/GroupDto.md +23 -0
  30. data/docs/GroupProjection.md +23 -0
  31. data/docs/HTMLValidationResult.md +21 -0
  32. data/docs/Inbox.md +26 -4
  33. data/docs/InboxControllerApi.md +652 -0
  34. data/docs/InboxProjection.md +29 -0
  35. data/docs/JsonNode.md +59 -0
  36. data/docs/MatchOption.md +13 -2
  37. data/docs/MatchOptions.md +9 -0
  38. data/docs/PageContactProjection.md +37 -0
  39. data/docs/PageEmailPreview.md +37 -0
  40. data/docs/PageEmailProjection.md +37 -0
  41. data/docs/PageGroupProjection.md +37 -0
  42. data/docs/PageInboxProjection.md +37 -0
  43. data/docs/PageTemplateProjection.md +37 -0
  44. data/docs/PageWebhookProjection.md +37 -0
  45. data/docs/Pageable.md +27 -0
  46. data/docs/RawEmailJson.md +17 -0
  47. data/docs/SendEmailOptions.md +33 -6
  48. data/docs/SetInboxFavouritedOptions.md +17 -0
  49. data/docs/Sort.md +21 -0
  50. data/docs/TemplateControllerApi.md +274 -0
  51. data/docs/TemplateDto.md +25 -0
  52. data/docs/TemplateProjection.md +25 -0
  53. data/docs/TemplateVariable.md +19 -0
  54. data/docs/UnreadCount.md +17 -0
  55. data/docs/UpdateGroupContacts.md +17 -0
  56. data/docs/UpdateInboxOptions.md +25 -0
  57. data/docs/UploadAttachmentOptions.md +12 -1
  58. data/docs/ValidationDto.md +19 -0
  59. data/docs/ValidationMessage.md +19 -0
  60. data/docs/WaitForConditions.md +29 -0
  61. data/docs/WaitForControllerApi.md +317 -0
  62. data/docs/WebhookControllerApi.md +339 -0
  63. data/docs/WebhookDto.md +33 -0
  64. data/docs/WebhookProjection.md +27 -0
  65. data/docs/WebhookTestRequest.md +23 -0
  66. data/docs/WebhookTestResponse.md +19 -0
  67. data/docs/WebhookTestResult.md +21 -0
  68. data/git_push.sh +10 -7
  69. data/lib/mailslurp_client.rb +56 -7
  70. data/lib/mailslurp_client/api/attachment_controller_api.rb +157 -0
  71. data/lib/mailslurp_client/api/bulk_actions_controller_api.rb +203 -0
  72. data/lib/mailslurp_client/api/common_actions_controller_api.rb +201 -0
  73. data/lib/mailslurp_client/api/contact_controller_api.rb +323 -0
  74. data/lib/mailslurp_client/api/domain_controller_api.rb +264 -0
  75. data/lib/mailslurp_client/api/email_controller_api.rb +852 -0
  76. data/lib/mailslurp_client/api/group_controller_api.rb +519 -0
  77. data/lib/mailslurp_client/api/inbox_controller_api.rb +763 -0
  78. data/lib/mailslurp_client/api/template_controller_api.rb +323 -0
  79. data/lib/mailslurp_client/api/wait_for_controller_api.rb +359 -0
  80. data/lib/mailslurp_client/api/webhook_controller_api.rb +405 -0
  81. data/lib/mailslurp_client/api_client.rb +36 -39
  82. data/lib/mailslurp_client/api_error.rb +23 -4
  83. data/lib/mailslurp_client/configuration.rb +8 -11
  84. data/lib/mailslurp_client/models/attachment_meta_data.rb +253 -0
  85. data/lib/mailslurp_client/models/basic_auth_options.rb +39 -15
  86. data/lib/mailslurp_client/models/bulk_send_email_options.rb +42 -19
  87. data/lib/mailslurp_client/models/contact_dto.rb +288 -0
  88. data/lib/mailslurp_client/models/contact_projection.rb +261 -0
  89. data/lib/mailslurp_client/models/create_contact_options.rb +277 -0
  90. data/lib/mailslurp_client/models/create_domain_options.rb +208 -0
  91. data/lib/mailslurp_client/models/create_group_options.rb +220 -0
  92. data/lib/mailslurp_client/models/create_template_options.rb +225 -0
  93. data/lib/mailslurp_client/models/create_webhook_options.rb +54 -29
  94. data/lib/mailslurp_client/models/domain_dto.rb +296 -0
  95. data/lib/mailslurp_client/models/domain_preview.rb +240 -0
  96. data/lib/mailslurp_client/models/email.rb +86 -78
  97. data/lib/mailslurp_client/models/email_analysis.rb +46 -48
  98. data/lib/mailslurp_client/models/email_preview.rb +77 -41
  99. data/lib/mailslurp_client/models/email_projection.rb +306 -0
  100. data/lib/mailslurp_client/models/forward_email_options.rb +40 -17
  101. data/lib/mailslurp_client/models/group_contacts_dto.rb +227 -0
  102. data/lib/mailslurp_client/models/{webhook.rb → group_dto.rb} +60 -54
  103. data/lib/mailslurp_client/models/group_projection.rb +248 -0
  104. data/lib/mailslurp_client/models/html_validation_result.rb +243 -0
  105. data/lib/mailslurp_client/models/inbox.rb +104 -26
  106. data/lib/mailslurp_client/models/inbox_projection.rb +272 -0
  107. data/lib/mailslurp_client/models/json_node.rb +429 -0
  108. data/lib/mailslurp_client/models/match_option.rb +48 -24
  109. data/lib/mailslurp_client/models/match_options.rb +37 -14
  110. data/lib/mailslurp_client/models/page_contact_projection.rb +298 -0
  111. data/lib/mailslurp_client/models/page_email_preview.rb +298 -0
  112. data/lib/mailslurp_client/models/page_email_projection.rb +298 -0
  113. data/lib/mailslurp_client/models/page_group_projection.rb +298 -0
  114. data/lib/mailslurp_client/models/page_inbox_projection.rb +298 -0
  115. data/lib/mailslurp_client/models/page_template_projection.rb +298 -0
  116. data/lib/mailslurp_client/models/page_webhook_projection.rb +298 -0
  117. data/lib/mailslurp_client/models/pageable.rb +251 -0
  118. data/lib/mailslurp_client/models/raw_email_json.rb +211 -0
  119. data/lib/mailslurp_client/models/send_email_options.rb +141 -46
  120. data/lib/mailslurp_client/models/set_inbox_favourited_options.rb +208 -0
  121. data/lib/mailslurp_client/models/sort.rb +224 -0
  122. data/lib/mailslurp_client/models/template_dto.rb +269 -0
  123. data/lib/mailslurp_client/models/template_projection.rb +269 -0
  124. data/lib/mailslurp_client/models/template_variable.rb +259 -0
  125. data/lib/mailslurp_client/models/unread_count.rb +211 -0
  126. data/lib/mailslurp_client/models/update_group_contacts.rb +213 -0
  127. data/lib/mailslurp_client/models/update_inbox_options.rb +250 -0
  128. data/lib/mailslurp_client/models/upload_attachment_options.rb +43 -20
  129. data/lib/mailslurp_client/models/validation_dto.rb +225 -0
  130. data/lib/mailslurp_client/models/validation_message.rb +220 -0
  131. data/lib/mailslurp_client/models/wait_for_conditions.rb +315 -0
  132. data/lib/mailslurp_client/models/webhook_dto.rb +326 -0
  133. data/lib/mailslurp_client/models/webhook_projection.rb +277 -0
  134. data/lib/mailslurp_client/models/webhook_test_request.rb +284 -0
  135. data/lib/mailslurp_client/models/webhook_test_response.rb +215 -0
  136. data/lib/mailslurp_client/models/webhook_test_result.rb +235 -0
  137. data/lib/mailslurp_client/version.rb +5 -5
  138. data/mailslurp_client.gemspec +4 -10
  139. data/spec/api/attachment_controller_api_spec.rb +61 -0
  140. data/spec/api/bulk_actions_controller_api_spec.rb +68 -0
  141. data/spec/api/common_actions_controller_api_spec.rb +129 -0
  142. data/spec/api/contact_controller_api_spec.rb +91 -0
  143. data/spec/api/domain_controller_api_spec.rb +82 -0
  144. data/spec/api/email_controller_api_spec.rb +162 -0
  145. data/spec/api/group_controller_api_spec.rb +126 -0
  146. data/spec/api/inbox_controller_api_spec.rb +172 -0
  147. data/spec/api/template_controller_api_spec.rb +91 -0
  148. data/spec/api/wait_for_controller_api_spec.rb +107 -0
  149. data/spec/api/webhook_controller_api_spec.rb +107 -0
  150. data/spec/api_client_spec.rb +5 -5
  151. data/spec/configuration_spec.rb +4 -4
  152. data/spec/models/attachment_meta_data_spec.rb +59 -0
  153. data/spec/models/basic_auth_options_spec.rb +4 -4
  154. data/spec/models/bulk_send_email_options_spec.rb +4 -4
  155. data/spec/models/contact_dto_spec.rb +83 -0
  156. data/spec/models/contact_projection_spec.rb +71 -0
  157. data/spec/models/create_contact_options_spec.rb +83 -0
  158. data/spec/models/create_domain_options_spec.rb +41 -0
  159. data/spec/models/create_group_options_spec.rb +47 -0
  160. data/spec/models/create_template_options_spec.rb +47 -0
  161. data/spec/models/create_webhook_options_spec.rb +6 -6
  162. data/spec/models/domain_dto_spec.rb +77 -0
  163. data/spec/models/domain_preview_spec.rb +53 -0
  164. data/spec/models/email_analysis_spec.rb +4 -4
  165. data/spec/models/email_preview_spec.rb +41 -5
  166. data/spec/models/email_projection_spec.rb +89 -0
  167. data/spec/models/email_spec.rb +17 -5
  168. data/spec/models/forward_email_options_spec.rb +4 -4
  169. data/spec/models/group_contacts_dto_spec.rb +47 -0
  170. data/spec/models/group_dto_spec.rb +59 -0
  171. data/spec/models/group_projection_spec.rb +59 -0
  172. data/spec/models/html_validation_result_spec.rb +53 -0
  173. data/spec/models/inbox_projection_spec.rb +77 -0
  174. data/spec/models/inbox_spec.rb +35 -5
  175. data/spec/models/json_node_spec.rb +171 -0
  176. data/spec/models/match_option_spec.rb +4 -4
  177. data/spec/models/match_options_spec.rb +4 -4
  178. data/spec/models/page_contact_projection_spec.rb +101 -0
  179. data/spec/models/page_email_preview_spec.rb +101 -0
  180. data/spec/models/page_email_projection_spec.rb +101 -0
  181. data/spec/models/page_group_projection_spec.rb +101 -0
  182. data/spec/models/page_inbox_projection_spec.rb +101 -0
  183. data/spec/models/page_template_projection_spec.rb +101 -0
  184. data/spec/models/page_webhook_projection_spec.rb +101 -0
  185. data/spec/models/pageable_spec.rb +71 -0
  186. data/spec/models/raw_email_json_spec.rb +41 -0
  187. data/spec/models/send_email_options_spec.rb +45 -5
  188. data/spec/models/set_inbox_favourited_options_spec.rb +41 -0
  189. data/spec/models/sort_spec.rb +53 -0
  190. data/spec/models/template_dto_spec.rb +65 -0
  191. data/spec/models/template_projection_spec.rb +65 -0
  192. data/spec/models/template_variable_spec.rb +51 -0
  193. data/spec/models/unread_count_spec.rb +41 -0
  194. data/spec/models/update_group_contacts_spec.rb +41 -0
  195. data/spec/models/{webhook_spec.rb → update_inbox_options_spec.rb} +14 -20
  196. data/spec/models/upload_attachment_options_spec.rb +4 -4
  197. data/spec/models/validation_dto_spec.rb +47 -0
  198. data/spec/models/validation_message_spec.rb +47 -0
  199. data/spec/models/wait_for_conditions_spec.rb +85 -0
  200. data/spec/models/webhook_dto_spec.rb +93 -0
  201. data/spec/models/webhook_projection_spec.rb +71 -0
  202. data/spec/models/webhook_test_request_spec.rb +63 -0
  203. data/spec/models/webhook_test_response_spec.rb +47 -0
  204. data/spec/models/webhook_test_result_spec.rb +53 -0
  205. data/spec/spec_helper.rb +4 -4
  206. metadata +223 -149
  207. data/Gemfile.lock +0 -79
  208. data/docs/CommonOperationsApi.md +0 -499
  209. data/docs/ExtraOperationsApi.md +0 -1021
  210. data/docs/Webhook.md +0 -13
  211. data/lib/mailslurp_client/api/common_operations_api.rb +0 -502
  212. data/lib/mailslurp_client/api/extra_operations_api.rb +0 -1054
  213. data/spec/api/common_operations_api_spec.rb +0 -95
  214. data/spec/api/extra_operations_api_spec.rb +0 -231
@@ -1,18 +1,45 @@
1
1
  # MailSlurpClient::SendEmailOptions
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
- **attachments** | **Array<String>** | Optional list of attachment IDs to send with this email. You must first upload each attachment separately in order to obtain attachment IDs | [optional]
7
+ **attachments** | **Array<String>** | Optional list of attachment IDs to send with this email. You must first upload each attachment separately in order to obtain attachment IDs. This way you can reuse attachments with different emails once uploaded. | [optional]
7
8
  **bcc** | **Array<String>** | Optional list of bcc destination email addresses | [optional]
8
- **body** | **String** | Contents of email. If HTML set isHTML to true. You can use moustache templates here if you provide a templateVariables option | [optional]
9
+ **body** | **String** | Optional contents of email. If body contains HTML then set `isHTML` to true to ensure that email clients render it correctly. You can use moustache template syntax in the email body in conjunction with `toGroup` contact variables or `templateVariables` data. If you need more templating control consider creating a template and using the `template` property instead of the body. | [optional]
9
10
  **cc** | **Array<String>** | Optional list of cc destination email addresses | [optional]
10
11
  **charset** | **String** | Optional charset | [optional]
11
- **from** | **String** | Optional from address. If not set source inbox address will be used | [optional]
12
- **html** | **BOOLEAN** | | [optional]
12
+ **from** | **String** | Optional from address. If not set the source inbox address will be used for this field. Beware of potential spam penalties when setting this field to an address not used by the inbox. For custom email addresses use a custom domain. | [optional]
13
+ **is_html** | **Boolean** | Optional HTML flag. If true the `content-type` of the email will be `text/html`. Set to true when sending HTML to ensure proper rending on email clients | [optional]
13
14
  **reply_to** | **String** | Optional replyTo header | [optional]
15
+ **send_strategy** | **String** | Optional strategy to use when sending the email | [optional]
14
16
  **subject** | **String** | Optional email subject line | [optional]
15
- **template_variables** | [**Object**](.md) | Optional map of template variables. Will replace moustache syntax variables in subject or body with the associated values | [optional]
16
- **to** | **Array<String>** | List of destination email addresses. Even single recipients must be in array form. |
17
+ **template** | **String** | Optional template ID to use for body. Will override body if provided. When using a template make sure you pass the corresponding map of `templateVariables`. You can find which variables are needed by fetching the template itself or viewing it in the dashboard. | [optional]
18
+ **template_variables** | [**Object**](.md) | Optional map of template variables. Will replace moustache syntax variables in subject and body or template with the associated values if found. | [optional]
19
+ **to** | **Array<String>** | List of destination email addresses. Even single recipients must be in array form. Maximum recipients per email depends on your plan. If you need to send many emails try using contacts or contact groups or use a non standard sendStrategy to ensure that spam filters are not triggered (many recipients in one email can affect your spam rating). | [optional]
20
+ **to_contacts** | **Array<String>** | Optional list of contact IDs to send email to. Manage your contacts via the API or dashboard. When contacts are used the email is sent to each contact separately so they will not see other recipients. | [optional]
21
+ **to_group** | **String** | Optional contact group ID to send email to. You can create contacts and contact groups in the API or dashboard and use them for email campaigns. When contact groups are used the email is sent to each contact separately so they will not see other recipients | [optional]
22
+
23
+ ## Code Sample
24
+
25
+ ```ruby
26
+ require 'MailSlurpClient'
27
+
28
+ instance = MailSlurpClient::SendEmailOptions.new(attachments: null,
29
+ bcc: null,
30
+ body: null,
31
+ cc: null,
32
+ charset: null,
33
+ from: null,
34
+ is_html: null,
35
+ reply_to: null,
36
+ send_strategy: null,
37
+ subject: null,
38
+ template: null,
39
+ template_variables: null,
40
+ to: null,
41
+ to_contacts: null,
42
+ to_group: null)
43
+ ```
17
44
 
18
45
 
@@ -0,0 +1,17 @@
1
+ # MailSlurpClient::SetInboxFavouritedOptions
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **state** | **Boolean** | Should the inbox be favourited? | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'MailSlurpClient'
13
+
14
+ instance = MailSlurpClient::SetInboxFavouritedOptions.new(state: null)
15
+ ```
16
+
17
+
data/docs/Sort.md ADDED
@@ -0,0 +1,21 @@
1
+ # MailSlurpClient::Sort
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **empty** | **Boolean** | | [optional]
8
+ **sorted** | **Boolean** | | [optional]
9
+ **unsorted** | **Boolean** | | [optional]
10
+
11
+ ## Code Sample
12
+
13
+ ```ruby
14
+ require 'MailSlurpClient'
15
+
16
+ instance = MailSlurpClient::Sort.new(empty: null,
17
+ sorted: null,
18
+ unsorted: null)
19
+ ```
20
+
21
+
@@ -0,0 +1,274 @@
1
+ # MailSlurpClient::TemplateControllerApi
2
+
3
+ All URIs are relative to *https://api.mailslurp.com*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**create_template**](TemplateControllerApi.md#create_template) | **POST** /templates | Create a Template
8
+ [**delete_template**](TemplateControllerApi.md#delete_template) | **DELETE** /templates/{TemplateId} | Delete Template
9
+ [**get_all_templates**](TemplateControllerApi.md#get_all_templates) | **GET** /templates/paginated | Get all Templates in paginated format
10
+ [**get_template**](TemplateControllerApi.md#get_template) | **GET** /templates/{TemplateId} | Get Template
11
+ [**get_templates**](TemplateControllerApi.md#get_templates) | **GET** /templates | Get all Templates
12
+
13
+
14
+
15
+ ## create_template
16
+
17
+ > TemplateDto create_template(create_template_options)
18
+
19
+ Create a Template
20
+
21
+ ### Example
22
+
23
+ ```ruby
24
+ # load the gem
25
+ require 'mailslurp_client'
26
+ # setup authorization
27
+ MailSlurpClient.configure do |config|
28
+ # Configure API key authorization: API_KEY
29
+ config.api_key['x-api-key'] = 'YOUR API KEY'
30
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
31
+ #config.api_key_prefix['x-api-key'] = 'Bearer'
32
+ end
33
+
34
+ api_instance = MailSlurpClient::TemplateControllerApi.new
35
+ create_template_options = MailSlurpClient::CreateTemplateOptions.new # CreateTemplateOptions | createTemplateOptions
36
+
37
+ begin
38
+ #Create a Template
39
+ result = api_instance.create_template(create_template_options)
40
+ p result
41
+ rescue MailSlurpClient::ApiError => e
42
+ puts "Exception when calling TemplateControllerApi->create_template: #{e}"
43
+ end
44
+ ```
45
+
46
+ ### Parameters
47
+
48
+
49
+ Name | Type | Description | Notes
50
+ ------------- | ------------- | ------------- | -------------
51
+ **create_template_options** | [**CreateTemplateOptions**](CreateTemplateOptions.md)| createTemplateOptions |
52
+
53
+ ### Return type
54
+
55
+ [**TemplateDto**](TemplateDto.md)
56
+
57
+ ### Authorization
58
+
59
+ [API_KEY](../README.md#API_KEY)
60
+
61
+ ### HTTP request headers
62
+
63
+ - **Content-Type**: application/json
64
+ - **Accept**: application/json
65
+
66
+
67
+ ## delete_template
68
+
69
+ > delete_template(template_id)
70
+
71
+ Delete Template
72
+
73
+ ### Example
74
+
75
+ ```ruby
76
+ # load the gem
77
+ require 'mailslurp_client'
78
+ # setup authorization
79
+ MailSlurpClient.configure do |config|
80
+ # Configure API key authorization: API_KEY
81
+ config.api_key['x-api-key'] = 'YOUR API KEY'
82
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
83
+ #config.api_key_prefix['x-api-key'] = 'Bearer'
84
+ end
85
+
86
+ api_instance = MailSlurpClient::TemplateControllerApi.new
87
+ template_id = 'template_id_example' # String | TemplateId
88
+
89
+ begin
90
+ #Delete Template
91
+ api_instance.delete_template(template_id)
92
+ rescue MailSlurpClient::ApiError => e
93
+ puts "Exception when calling TemplateControllerApi->delete_template: #{e}"
94
+ end
95
+ ```
96
+
97
+ ### Parameters
98
+
99
+
100
+ Name | Type | Description | Notes
101
+ ------------- | ------------- | ------------- | -------------
102
+ **template_id** | [**String**](.md)| TemplateId |
103
+
104
+ ### Return type
105
+
106
+ nil (empty response body)
107
+
108
+ ### Authorization
109
+
110
+ [API_KEY](../README.md#API_KEY)
111
+
112
+ ### HTTP request headers
113
+
114
+ - **Content-Type**: Not defined
115
+ - **Accept**: Not defined
116
+
117
+
118
+ ## get_all_templates
119
+
120
+ > PageTemplateProjection get_all_templates(opts)
121
+
122
+ Get all Templates in paginated format
123
+
124
+ ### Example
125
+
126
+ ```ruby
127
+ # load the gem
128
+ require 'mailslurp_client'
129
+ # setup authorization
130
+ MailSlurpClient.configure do |config|
131
+ # Configure API key authorization: API_KEY
132
+ config.api_key['x-api-key'] = 'YOUR API KEY'
133
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
134
+ #config.api_key_prefix['x-api-key'] = 'Bearer'
135
+ end
136
+
137
+ api_instance = MailSlurpClient::TemplateControllerApi.new
138
+ opts = {
139
+ page: 0, # Integer | Optional page index in inbox list pagination
140
+ size: 20, # Integer | Optional page size in inbox list pagination
141
+ sort: 'ASC' # String | Optional createdAt sort direction ASC or DESC
142
+ }
143
+
144
+ begin
145
+ #Get all Templates in paginated format
146
+ result = api_instance.get_all_templates(opts)
147
+ p result
148
+ rescue MailSlurpClient::ApiError => e
149
+ puts "Exception when calling TemplateControllerApi->get_all_templates: #{e}"
150
+ end
151
+ ```
152
+
153
+ ### Parameters
154
+
155
+
156
+ Name | Type | Description | Notes
157
+ ------------- | ------------- | ------------- | -------------
158
+ **page** | **Integer**| Optional page index in inbox list pagination | [optional] [default to 0]
159
+ **size** | **Integer**| Optional page size in inbox list pagination | [optional] [default to 20]
160
+ **sort** | **String**| Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC']
161
+
162
+ ### Return type
163
+
164
+ [**PageTemplateProjection**](PageTemplateProjection.md)
165
+
166
+ ### Authorization
167
+
168
+ [API_KEY](../README.md#API_KEY)
169
+
170
+ ### HTTP request headers
171
+
172
+ - **Content-Type**: Not defined
173
+ - **Accept**: application/json
174
+
175
+
176
+ ## get_template
177
+
178
+ > TemplateDto get_template(template_id)
179
+
180
+ Get Template
181
+
182
+ ### Example
183
+
184
+ ```ruby
185
+ # load the gem
186
+ require 'mailslurp_client'
187
+ # setup authorization
188
+ MailSlurpClient.configure do |config|
189
+ # Configure API key authorization: API_KEY
190
+ config.api_key['x-api-key'] = 'YOUR API KEY'
191
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
192
+ #config.api_key_prefix['x-api-key'] = 'Bearer'
193
+ end
194
+
195
+ api_instance = MailSlurpClient::TemplateControllerApi.new
196
+ template_id = 'template_id_example' # String | TemplateId
197
+
198
+ begin
199
+ #Get Template
200
+ result = api_instance.get_template(template_id)
201
+ p result
202
+ rescue MailSlurpClient::ApiError => e
203
+ puts "Exception when calling TemplateControllerApi->get_template: #{e}"
204
+ end
205
+ ```
206
+
207
+ ### Parameters
208
+
209
+
210
+ Name | Type | Description | Notes
211
+ ------------- | ------------- | ------------- | -------------
212
+ **template_id** | [**String**](.md)| TemplateId |
213
+
214
+ ### Return type
215
+
216
+ [**TemplateDto**](TemplateDto.md)
217
+
218
+ ### Authorization
219
+
220
+ [API_KEY](../README.md#API_KEY)
221
+
222
+ ### HTTP request headers
223
+
224
+ - **Content-Type**: Not defined
225
+ - **Accept**: application/json
226
+
227
+
228
+ ## get_templates
229
+
230
+ > Array<TemplateProjection> get_templates
231
+
232
+ Get all Templates
233
+
234
+ ### Example
235
+
236
+ ```ruby
237
+ # load the gem
238
+ require 'mailslurp_client'
239
+ # setup authorization
240
+ MailSlurpClient.configure do |config|
241
+ # Configure API key authorization: API_KEY
242
+ config.api_key['x-api-key'] = 'YOUR API KEY'
243
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
244
+ #config.api_key_prefix['x-api-key'] = 'Bearer'
245
+ end
246
+
247
+ api_instance = MailSlurpClient::TemplateControllerApi.new
248
+
249
+ begin
250
+ #Get all Templates
251
+ result = api_instance.get_templates
252
+ p result
253
+ rescue MailSlurpClient::ApiError => e
254
+ puts "Exception when calling TemplateControllerApi->get_templates: #{e}"
255
+ end
256
+ ```
257
+
258
+ ### Parameters
259
+
260
+ This endpoint does not need any parameter.
261
+
262
+ ### Return type
263
+
264
+ [**Array<TemplateProjection>**](TemplateProjection.md)
265
+
266
+ ### Authorization
267
+
268
+ [API_KEY](../README.md#API_KEY)
269
+
270
+ ### HTTP request headers
271
+
272
+ - **Content-Type**: Not defined
273
+ - **Accept**: application/json
274
+
@@ -0,0 +1,25 @@
1
+ # MailSlurpClient::TemplateDto
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **content** | **String** | |
8
+ **created_at** | **DateTime** | |
9
+ **id** | **String** | |
10
+ **name** | **String** | |
11
+ **variables** | [**Array<TemplateVariable>**](TemplateVariable.md) | |
12
+
13
+ ## Code Sample
14
+
15
+ ```ruby
16
+ require 'MailSlurpClient'
17
+
18
+ instance = MailSlurpClient::TemplateDto.new(content: null,
19
+ created_at: null,
20
+ id: null,
21
+ name: null,
22
+ variables: null)
23
+ ```
24
+
25
+
@@ -0,0 +1,25 @@
1
+ # MailSlurpClient::TemplateProjection
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **created_at** | **DateTime** | |
8
+ **id** | **String** | |
9
+ **name** | **String** | |
10
+ **updated_at** | **DateTime** | |
11
+ **variables** | **Array<String>** | |
12
+
13
+ ## Code Sample
14
+
15
+ ```ruby
16
+ require 'MailSlurpClient'
17
+
18
+ instance = MailSlurpClient::TemplateProjection.new(created_at: null,
19
+ id: null,
20
+ name: null,
21
+ updated_at: null,
22
+ variables: null)
23
+ ```
24
+
25
+
@@ -0,0 +1,19 @@
1
+ # MailSlurpClient::TemplateVariable
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **name** | **String** | |
8
+ **variable_type** | **String** | |
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'MailSlurpClient'
14
+
15
+ instance = MailSlurpClient::TemplateVariable.new(name: null,
16
+ variable_type: null)
17
+ ```
18
+
19
+
@@ -0,0 +1,17 @@
1
+ # MailSlurpClient::UnreadCount
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'MailSlurpClient'
13
+
14
+ instance = MailSlurpClient::UnreadCount.new(count: null)
15
+ ```
16
+
17
+