parlo-sdk 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +132 -0
  3. data/lib/parlo-sdk/api/domains_api.rb +332 -0
  4. data/lib/parlo-sdk/api/emails_api.rb +156 -0
  5. data/lib/parlo-sdk/api_client.rb +397 -0
  6. data/lib/parlo-sdk/api_error.rb +58 -0
  7. data/lib/parlo-sdk/api_model_base.rb +88 -0
  8. data/lib/parlo-sdk/configuration.rb +308 -0
  9. data/lib/parlo-sdk/models/auth_health.rb +227 -0
  10. data/lib/parlo-sdk/models/auth_health_dkim.rb +188 -0
  11. data/lib/parlo-sdk/models/auth_health_dmarc.rb +174 -0
  12. data/lib/parlo-sdk/models/auth_health_spf.rb +164 -0
  13. data/lib/parlo-sdk/models/create_domain_request.rb +164 -0
  14. data/lib/parlo-sdk/models/delete_domain200_response.rb +214 -0
  15. data/lib/parlo-sdk/models/dns_record.rb +267 -0
  16. data/lib/parlo-sdk/models/domain.rb +319 -0
  17. data/lib/parlo-sdk/models/domain_summary.rb +260 -0
  18. data/lib/parlo-sdk/models/email.rb +340 -0
  19. data/lib/parlo-sdk/models/email_created.rb +214 -0
  20. data/lib/parlo-sdk/models/error.rb +190 -0
  21. data/lib/parlo-sdk/models/list_domains200_response.rb +166 -0
  22. data/lib/parlo-sdk/models/send_email_request.rb +288 -0
  23. data/lib/parlo-sdk/models/send_email_request_cc.rb +104 -0
  24. data/lib/parlo-sdk/models/send_email_request_to.rb +105 -0
  25. data/lib/parlo-sdk/version.rb +15 -0
  26. data/lib/parlo-sdk.rb +58 -0
  27. data/spec/api/domains_api_spec.rb +92 -0
  28. data/spec/api/emails_api_spec.rb +60 -0
  29. data/spec/models/auth_health_dkim_spec.rb +40 -0
  30. data/spec/models/auth_health_dmarc_spec.rb +42 -0
  31. data/spec/models/auth_health_spec.rb +54 -0
  32. data/spec/models/auth_health_spf_spec.rb +36 -0
  33. data/spec/models/create_domain_request_spec.rb +36 -0
  34. data/spec/models/delete_domain200_response_spec.rb +46 -0
  35. data/spec/models/dns_record_spec.rb +58 -0
  36. data/spec/models/domain_spec.rb +76 -0
  37. data/spec/models/domain_summary_spec.rb +64 -0
  38. data/spec/models/email_created_spec.rb +46 -0
  39. data/spec/models/email_spec.rb +82 -0
  40. data/spec/models/error_spec.rb +42 -0
  41. data/spec/models/list_domains200_response_spec.rb +36 -0
  42. data/spec/models/send_email_request_cc_spec.rb +32 -0
  43. data/spec/models/send_email_request_spec.rb +90 -0
  44. data/spec/models/send_email_request_to_spec.rb +32 -0
  45. data/spec/spec_helper.rb +111 -0
  46. metadata +153 -0
@@ -0,0 +1,104 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Parlo
17
+ module SendEmailRequestCc
18
+ class << self
19
+ # List of class defined in oneOf (OpenAPI v3)
20
+ def openapi_one_of
21
+ [
22
+ :'Array<String>',
23
+ :'String'
24
+ ]
25
+ end
26
+
27
+ # Builds the object
28
+ # @param [Mixed] Data to be matched against the list of oneOf items
29
+ # @return [Object] Returns the model or the data itself
30
+ def build(data)
31
+ # Go through the list of oneOf items and attempt to identify the appropriate one.
32
+ # Note:
33
+ # - We do not attempt to check whether exactly one item matches.
34
+ # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 })
35
+ # due to the way the deserialization is made in the base_object template (it just casts without verifying).
36
+ # - TODO: scalar values are de facto behaving as if they were nullable.
37
+ # - TODO: logging when debugging is set.
38
+ openapi_one_of.each do |klass|
39
+ begin
40
+ next if klass == :AnyType # "nullable: true"
41
+ return find_and_cast_into_type(klass, data)
42
+ rescue # rescue all errors so we keep iterating even if the current item lookup raises
43
+ end
44
+ end
45
+
46
+ openapi_one_of.include?(:AnyType) ? data : nil
47
+ end
48
+
49
+ private
50
+
51
+ SchemaMismatchError = Class.new(StandardError)
52
+
53
+ # Note: 'File' is missing here because in the regular case we get the data _after_ a call to JSON.parse.
54
+ def find_and_cast_into_type(klass, data)
55
+ return if data.nil?
56
+
57
+ case klass.to_s
58
+ when 'Boolean'
59
+ return data if data.instance_of?(TrueClass) || data.instance_of?(FalseClass)
60
+ when 'Float'
61
+ return data if data.instance_of?(Float)
62
+ when 'Integer'
63
+ return data if data.instance_of?(Integer)
64
+ when 'Time'
65
+ return Time.parse(data)
66
+ when 'Date'
67
+ return Date.iso8601(data)
68
+ when 'String'
69
+ return data if data.instance_of?(String)
70
+ when 'Object' # "type: object"
71
+ return data if data.instance_of?(Hash)
72
+ when /\AArray<(?<sub_type>.+)>\z/ # "type: array"
73
+ if data.instance_of?(Array)
74
+ sub_type = Regexp.last_match[:sub_type]
75
+ return data.map { |item| find_and_cast_into_type(sub_type, item) }
76
+ end
77
+ when /\AHash<String, (?<sub_type>.+)>\z/ # "type: object" with "additionalProperties: { ... }"
78
+ if data.instance_of?(Hash) && data.keys.all? { |k| k.instance_of?(Symbol) || k.instance_of?(String) }
79
+ sub_type = Regexp.last_match[:sub_type]
80
+ return data.each_with_object({}) { |(k, v), hsh| hsh[k] = find_and_cast_into_type(sub_type, v) }
81
+ end
82
+ else # model
83
+ const = Parlo.const_get(klass)
84
+ if const
85
+ if const.respond_to?(:openapi_one_of) # nested oneOf model
86
+ model = const.build(data)
87
+ return model if model
88
+ else
89
+ # raise if data contains keys that are not known to the model
90
+ raise if const.respond_to?(:acceptable_attributes) && !(data.keys - const.acceptable_attributes).empty?
91
+ model = const.build_from_hash(data)
92
+ return model if model
93
+ end
94
+ end
95
+ end
96
+
97
+ raise # if no match by now, raise
98
+ rescue
99
+ raise SchemaMismatchError, "#{data} doesn't match the #{klass} type"
100
+ end
101
+ end
102
+ end
103
+
104
+ end
@@ -0,0 +1,105 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Parlo
17
+ # One recipient address or an array of them.
18
+ module SendEmailRequestTo
19
+ class << self
20
+ # List of class defined in oneOf (OpenAPI v3)
21
+ def openapi_one_of
22
+ [
23
+ :'Array<String>',
24
+ :'String'
25
+ ]
26
+ end
27
+
28
+ # Builds the object
29
+ # @param [Mixed] Data to be matched against the list of oneOf items
30
+ # @return [Object] Returns the model or the data itself
31
+ def build(data)
32
+ # Go through the list of oneOf items and attempt to identify the appropriate one.
33
+ # Note:
34
+ # - We do not attempt to check whether exactly one item matches.
35
+ # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 })
36
+ # due to the way the deserialization is made in the base_object template (it just casts without verifying).
37
+ # - TODO: scalar values are de facto behaving as if they were nullable.
38
+ # - TODO: logging when debugging is set.
39
+ openapi_one_of.each do |klass|
40
+ begin
41
+ next if klass == :AnyType # "nullable: true"
42
+ return find_and_cast_into_type(klass, data)
43
+ rescue # rescue all errors so we keep iterating even if the current item lookup raises
44
+ end
45
+ end
46
+
47
+ openapi_one_of.include?(:AnyType) ? data : nil
48
+ end
49
+
50
+ private
51
+
52
+ SchemaMismatchError = Class.new(StandardError)
53
+
54
+ # Note: 'File' is missing here because in the regular case we get the data _after_ a call to JSON.parse.
55
+ def find_and_cast_into_type(klass, data)
56
+ return if data.nil?
57
+
58
+ case klass.to_s
59
+ when 'Boolean'
60
+ return data if data.instance_of?(TrueClass) || data.instance_of?(FalseClass)
61
+ when 'Float'
62
+ return data if data.instance_of?(Float)
63
+ when 'Integer'
64
+ return data if data.instance_of?(Integer)
65
+ when 'Time'
66
+ return Time.parse(data)
67
+ when 'Date'
68
+ return Date.iso8601(data)
69
+ when 'String'
70
+ return data if data.instance_of?(String)
71
+ when 'Object' # "type: object"
72
+ return data if data.instance_of?(Hash)
73
+ when /\AArray<(?<sub_type>.+)>\z/ # "type: array"
74
+ if data.instance_of?(Array)
75
+ sub_type = Regexp.last_match[:sub_type]
76
+ return data.map { |item| find_and_cast_into_type(sub_type, item) }
77
+ end
78
+ when /\AHash<String, (?<sub_type>.+)>\z/ # "type: object" with "additionalProperties: { ... }"
79
+ if data.instance_of?(Hash) && data.keys.all? { |k| k.instance_of?(Symbol) || k.instance_of?(String) }
80
+ sub_type = Regexp.last_match[:sub_type]
81
+ return data.each_with_object({}) { |(k, v), hsh| hsh[k] = find_and_cast_into_type(sub_type, v) }
82
+ end
83
+ else # model
84
+ const = Parlo.const_get(klass)
85
+ if const
86
+ if const.respond_to?(:openapi_one_of) # nested oneOf model
87
+ model = const.build(data)
88
+ return model if model
89
+ else
90
+ # raise if data contains keys that are not known to the model
91
+ raise if const.respond_to?(:acceptable_attributes) && !(data.keys - const.acceptable_attributes).empty?
92
+ model = const.build_from_hash(data)
93
+ return model if model
94
+ end
95
+ end
96
+ end
97
+
98
+ raise # if no match by now, raise
99
+ rescue
100
+ raise SchemaMismatchError, "#{data} doesn't match the #{klass} type"
101
+ end
102
+ end
103
+ end
104
+
105
+ end
@@ -0,0 +1,15 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ module Parlo
14
+ VERSION = '1.0.0'
15
+ end
data/lib/parlo-sdk.rb ADDED
@@ -0,0 +1,58 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ # Common files
14
+ require 'parlo-sdk/api_client'
15
+ require 'parlo-sdk/api_error'
16
+ require 'parlo-sdk/api_model_base'
17
+ require 'parlo-sdk/version'
18
+ require 'parlo-sdk/configuration'
19
+
20
+ # Models
21
+ require 'parlo-sdk/models/auth_health'
22
+ require 'parlo-sdk/models/auth_health_dkim'
23
+ require 'parlo-sdk/models/auth_health_dmarc'
24
+ require 'parlo-sdk/models/auth_health_spf'
25
+ require 'parlo-sdk/models/create_domain_request'
26
+ require 'parlo-sdk/models/delete_domain200_response'
27
+ require 'parlo-sdk/models/dns_record'
28
+ require 'parlo-sdk/models/domain'
29
+ require 'parlo-sdk/models/domain_summary'
30
+ require 'parlo-sdk/models/email'
31
+ require 'parlo-sdk/models/email_created'
32
+ require 'parlo-sdk/models/error'
33
+ require 'parlo-sdk/models/list_domains200_response'
34
+ require 'parlo-sdk/models/send_email_request'
35
+ require 'parlo-sdk/models/send_email_request_cc'
36
+ require 'parlo-sdk/models/send_email_request_to'
37
+
38
+ # APIs
39
+ require 'parlo-sdk/api/domains_api'
40
+ require 'parlo-sdk/api/emails_api'
41
+
42
+ module Parlo
43
+ class << self
44
+ # Customize default settings for the SDK using block.
45
+ # Parlo.configure do |config|
46
+ # config.username = "xxx"
47
+ # config.password = "xxx"
48
+ # end
49
+ # If no block given, return the default Configuration object.
50
+ def configure
51
+ if block_given?
52
+ yield(Configuration.default)
53
+ else
54
+ Configuration.default
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,92 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for Parlo::DomainsApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'DomainsApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = Parlo::DomainsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of DomainsApi' do
30
+ it 'should create an instance of DomainsApi' do
31
+ expect(@api_instance).to be_instance_of(Parlo::DomainsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for create_domain
36
+ # Add a sending domain
37
+ # Registers a domain as a SES sending identity and returns the DNS records to add (three required DKIM CNAMEs plus recommended SPF and DMARC TXT records). Add the records at your DNS provider, then call the verify endpoint to check them.
38
+ # @param create_domain_request
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [Domain]
41
+ describe 'create_domain test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
44
+ end
45
+ end
46
+
47
+ # unit tests for delete_domain
48
+ # Remove a domain
49
+ # @param id The domain id (UUID).
50
+ # @param [Hash] opts the optional parameters
51
+ # @return [DeleteDomain200Response]
52
+ describe 'delete_domain test' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ # unit tests for get_domain
59
+ # Retrieve a domain
60
+ # Returns the domain with its DNS records and advisory auth-health report.
61
+ # @param id The domain id (UUID).
62
+ # @param [Hash] opts the optional parameters
63
+ # @return [Domain]
64
+ describe 'get_domain test' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
67
+ end
68
+ end
69
+
70
+ # unit tests for list_domains
71
+ # List sending domains
72
+ # @param [Hash] opts the optional parameters
73
+ # @return [ListDomains200Response]
74
+ describe 'list_domains test' do
75
+ it 'should work' do
76
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
77
+ end
78
+ end
79
+
80
+ # unit tests for verify_domain
81
+ # Re-check a domain&#39;s DNS
82
+ # Re-reads the domain&#39;s verification status from SES and refreshes the advisory SPF/DMARC auth-health checks. Returns the updated domain.
83
+ # @param id The domain id (UUID).
84
+ # @param [Hash] opts the optional parameters
85
+ # @return [Domain]
86
+ describe 'verify_domain test' do
87
+ it 'should work' do
88
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
89
+ end
90
+ end
91
+
92
+ end
@@ -0,0 +1,60 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for Parlo::EmailsApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'EmailsApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = Parlo::EmailsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of EmailsApi' do
30
+ it 'should create an instance of EmailsApi' do
31
+ expect(@api_instance).to be_instance_of(Parlo::EmailsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for get_email
36
+ # Retrieve an email
37
+ # Returns the current status and engagement flags for a sent email.
38
+ # @param id The email id (UUID).
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [Email]
41
+ describe 'get_email test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
44
+ end
45
+ end
46
+
47
+ # unit tests for send_email
48
+ # Send a transactional email
49
+ # Queues a transactional email for delivery and returns immediately with a &#x60;queued&#x60; status. The actual send happens out of band; poll &#x60;GET /emails/{id}&#x60; (or consume webhook events) for the outcome. The &#x60;from&#x60; address must belong to a domain your company has verified (see the Domains endpoints). &#x60;data&#x60; fills &#x60;[placeholder]&#x60; tokens in &#x60;subject&#x60;, &#x60;html&#x60; and &#x60;text&#x60;. Provide at least one of &#x60;html&#x60; or &#x60;text&#x60;. Send an &#x60;Idempotency-Key&#x60; header to make retries safe — a repeated key returns the original email instead of sending again.
50
+ # @param send_email_request
51
+ # @param [Hash] opts the optional parameters
52
+ # @option opts [String] :idempotency_key Unique key that makes a repeated send return the original email instead of sending again.
53
+ # @return [EmailCreated]
54
+ describe 'send_email test' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Parlo::AuthHealthDkim
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Parlo::AuthHealthDkim do
21
+ #let(:instance) { Parlo::AuthHealthDkim.new }
22
+
23
+ describe 'test an instance of AuthHealthDkim' do
24
+ it 'should create an instance of AuthHealthDkim' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Parlo::AuthHealthDkim)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "status"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["pass", "pending", "fail"])
34
+ # validator.allowable_values.each do |value|
35
+ # expect { instance.status = value }.not_to raise_error
36
+ # end
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Parlo::AuthHealthDmarc
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Parlo::AuthHealthDmarc do
21
+ #let(:instance) { Parlo::AuthHealthDmarc.new }
22
+
23
+ describe 'test an instance of AuthHealthDmarc' do
24
+ it 'should create an instance of AuthHealthDmarc' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Parlo::AuthHealthDmarc)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "status"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "policy"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Parlo::AuthHealth
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Parlo::AuthHealth do
21
+ #let(:instance) { Parlo::AuthHealth.new }
22
+
23
+ describe 'test an instance of AuthHealth' do
24
+ it 'should create an instance of AuthHealth' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Parlo::AuthHealth)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "dkim"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "spf"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "dmarc"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "checked_at"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Parlo::AuthHealthSpf
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Parlo::AuthHealthSpf do
21
+ #let(:instance) { Parlo::AuthHealthSpf.new }
22
+
23
+ describe 'test an instance of AuthHealthSpf' do
24
+ it 'should create an instance of AuthHealthSpf' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Parlo::AuthHealthSpf)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "status"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #Parlo API
3
+
4
+ #The Parlo API sends transactional email and manages the sending domains it authenticates from. Marketing campaigns (audiences, templates, broadcasts) are designed and sent from the Parlo dashboard, not this API — the API is transactional-only at launch. All requests authenticate with a company API key as an HTTP bearer token: `Authorization: Bearer parlo_live_xxx`. Errors return a JSON body of the shape `{ \"message\": string, \"code\": string }`.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.24.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Parlo::CreateDomainRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Parlo::CreateDomainRequest do
21
+ #let(:instance) { Parlo::CreateDomainRequest.new }
22
+
23
+ describe 'test an instance of CreateDomainRequest' do
24
+ it 'should create an instance of CreateDomainRequest' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Parlo::CreateDomainRequest)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end