carbon_ruby_sdk 0.2.34 → 0.2.35

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,250 @@
1
+ =begin
2
+ #Carbon
3
+
4
+ #Connect external data to LLMs, no matter the source.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ =end
8
+
9
+ require 'date'
10
+ require 'time'
11
+
12
+ module Carbon
13
+ class OneDriveAuthentication
14
+ attr_accessor :source
15
+
16
+ attr_accessor :access_token
17
+
18
+ attr_accessor :refresh_token
19
+
20
+ attr_accessor :tenant_name
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'source' => :'source',
26
+ :'access_token' => :'access_token',
27
+ :'refresh_token' => :'refresh_token',
28
+ :'tenant_name' => :'tenant_name'
29
+ }
30
+ end
31
+
32
+ # Returns all the JSON keys this model knows about
33
+ def self.acceptable_attributes
34
+ attribute_map.values
35
+ end
36
+
37
+ # Attribute type mapping.
38
+ def self.openapi_types
39
+ {
40
+ :'source' => :'Object',
41
+ :'access_token' => :'String',
42
+ :'refresh_token' => :'String',
43
+ :'tenant_name' => :'String'
44
+ }
45
+ end
46
+
47
+ # List of attributes with nullable: true
48
+ def self.openapi_nullable
49
+ Set.new([
50
+ :'source',
51
+ :'refresh_token',
52
+ :'tenant_name'
53
+ ])
54
+ end
55
+
56
+ # Initializes the object
57
+ # @param [Hash] attributes Model attributes in the form of hash
58
+ def initialize(attributes = {})
59
+ if (!attributes.is_a?(Hash))
60
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Carbon::OneDriveAuthentication` initialize method"
61
+ end
62
+
63
+ # check to see if the attribute exists and convert string to symbol for hash key
64
+ attributes = attributes.each_with_object({}) { |(k, v), h|
65
+ if (!self.class.attribute_map.key?(k.to_sym))
66
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Carbon::OneDriveAuthentication`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
67
+ end
68
+ h[k.to_sym] = v
69
+ }
70
+
71
+ if attributes.key?(:'source')
72
+ self.source = attributes[:'source']
73
+ end
74
+
75
+ if attributes.key?(:'access_token')
76
+ self.access_token = attributes[:'access_token']
77
+ end
78
+
79
+ if attributes.key?(:'refresh_token')
80
+ self.refresh_token = attributes[:'refresh_token']
81
+ end
82
+
83
+ if attributes.key?(:'tenant_name')
84
+ self.tenant_name = attributes[:'tenant_name']
85
+ end
86
+ end
87
+
88
+ # Show invalid properties with the reasons. Usually used together with valid?
89
+ # @return Array for valid properties with the reasons
90
+ def list_invalid_properties
91
+ invalid_properties = Array.new
92
+ if @access_token.nil?
93
+ invalid_properties.push('invalid value for "access_token", access_token cannot be nil.')
94
+ end
95
+
96
+ invalid_properties
97
+ end
98
+
99
+ # Check to see if the all the properties in the model are valid
100
+ # @return true if the model is valid
101
+ def valid?
102
+ return false if @access_token.nil?
103
+ true
104
+ end
105
+
106
+ # Checks equality by comparing each attribute.
107
+ # @param [Object] Object to be compared
108
+ def ==(o)
109
+ return true if self.equal?(o)
110
+ self.class == o.class &&
111
+ source == o.source &&
112
+ access_token == o.access_token &&
113
+ refresh_token == o.refresh_token &&
114
+ tenant_name == o.tenant_name
115
+ end
116
+
117
+ # @see the `==` method
118
+ # @param [Object] Object to be compared
119
+ def eql?(o)
120
+ self == o
121
+ end
122
+
123
+ # Calculates hash code according to all attributes.
124
+ # @return [Integer] Hash code
125
+ def hash
126
+ [source, access_token, refresh_token, tenant_name].hash
127
+ end
128
+
129
+ # Builds the object from hash
130
+ # @param [Hash] attributes Model attributes in the form of hash
131
+ # @return [Object] Returns the model itself
132
+ def self.build_from_hash(attributes)
133
+ new.build_from_hash(attributes)
134
+ end
135
+
136
+ # Builds the object from hash
137
+ # @param [Hash] attributes Model attributes in the form of hash
138
+ # @return [Object] Returns the model itself
139
+ def build_from_hash(attributes)
140
+ return nil unless attributes.is_a?(Hash)
141
+ attributes = attributes.transform_keys(&:to_sym)
142
+ self.class.openapi_types.each_pair do |key, type|
143
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
144
+ self.send("#{key}=", nil)
145
+ elsif type =~ /\AArray<(.*)>/i
146
+ # check to ensure the input is an array given that the attribute
147
+ # is documented as an array but the input is not
148
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
149
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
150
+ end
151
+ elsif !attributes[self.class.attribute_map[key]].nil?
152
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
153
+ end
154
+ end
155
+
156
+ self
157
+ end
158
+
159
+ # Deserializes the data based on type
160
+ # @param string type Data type
161
+ # @param string value Value to be deserialized
162
+ # @return [Object] Deserialized data
163
+ def _deserialize(type, value)
164
+ case type.to_sym
165
+ when :Time
166
+ Time.parse(value)
167
+ when :Date
168
+ Date.parse(value)
169
+ when :String
170
+ value.to_s
171
+ when :Integer
172
+ value.to_i
173
+ when :Float
174
+ value.to_f
175
+ when :Boolean
176
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
177
+ true
178
+ else
179
+ false
180
+ end
181
+ when :Object
182
+ # generic object (usually a Hash), return directly
183
+ value
184
+ when /\AArray<(?<inner_type>.+)>\z/
185
+ inner_type = Regexp.last_match[:inner_type]
186
+ value.map { |v| _deserialize(inner_type, v) }
187
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
188
+ k_type = Regexp.last_match[:k_type]
189
+ v_type = Regexp.last_match[:v_type]
190
+ {}.tap do |hash|
191
+ value.each do |k, v|
192
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
193
+ end
194
+ end
195
+ else # model
196
+ # models (e.g. Pet) or oneOf
197
+ klass = Carbon.const_get(type)
198
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
199
+ end
200
+ end
201
+
202
+ # Returns the string representation of the object
203
+ # @return [String] String presentation of the object
204
+ def to_s
205
+ to_hash.to_s
206
+ end
207
+
208
+ # to_body is an alias to to_hash (backward compatibility)
209
+ # @return [Hash] Returns the object in the form of hash
210
+ def to_body
211
+ to_hash
212
+ end
213
+
214
+ # Returns the object in the form of hash
215
+ # @return [Hash] Returns the object in the form of hash
216
+ def to_hash
217
+ hash = {}
218
+ self.class.attribute_map.each_pair do |attr, param|
219
+ value = self.send(attr)
220
+ if value.nil?
221
+ is_nullable = self.class.openapi_nullable.include?(attr)
222
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
223
+ end
224
+
225
+ hash[param] = _to_hash(value)
226
+ end
227
+ hash
228
+ end
229
+
230
+ # Outputs non-array value in the form of hash
231
+ # For object, use to_hash. Otherwise, just return the value
232
+ # @param [Object] value Any valid value
233
+ # @return [Hash] Returns the value in the form of hash
234
+ def _to_hash(value)
235
+ if value.is_a?(Array)
236
+ value.compact.map { |v| _to_hash(v) }
237
+ elsif value.is_a?(Hash)
238
+ {}.tap do |hash|
239
+ value.each { |k, v| hash[k] = _to_hash(v) }
240
+ end
241
+ elsif value.respond_to? :to_hash
242
+ value.to_hash
243
+ else
244
+ value
245
+ end
246
+ end
247
+
248
+ end
249
+
250
+ end
@@ -53,6 +53,7 @@ module Carbon
53
53
  Set.new([
54
54
  :'source',
55
55
  :'refresh_token',
56
+ :'tenant_name',
56
57
  ])
57
58
  end
58
59
 
@@ -100,10 +101,6 @@ module Carbon
100
101
  invalid_properties.push('invalid value for "access_token", access_token cannot be nil.')
101
102
  end
102
103
 
103
- if @tenant_name.nil?
104
- invalid_properties.push('invalid value for "tenant_name", tenant_name cannot be nil.')
105
- end
106
-
107
104
  if @site_name.nil?
108
105
  invalid_properties.push('invalid value for "site_name", site_name cannot be nil.')
109
106
  end
@@ -115,7 +112,6 @@ module Carbon
115
112
  # @return true if the model is valid
116
113
  def valid?
117
114
  return false if @access_token.nil?
118
- return false if @tenant_name.nil?
119
115
  return false if @site_name.nil?
120
116
  true
121
117
  end
@@ -7,5 +7,5 @@ The version of the OpenAPI document: 1.0.0
7
7
  =end
8
8
 
9
9
  module Carbon
10
- VERSION = '0.2.34'
10
+ VERSION = '0.2.35'
11
11
  end
@@ -19,6 +19,10 @@ require 'carbon_ruby_sdk/models/add_webhook_props'
19
19
  require 'carbon_ruby_sdk/models/authentication_property'
20
20
  require 'carbon_ruby_sdk/models/auto_sync_enabled_sources_property'
21
21
  require 'carbon_ruby_sdk/models/auto_synced_source_types_property_inner'
22
+ require 'carbon_ruby_sdk/models/azure_blob_auth_request'
23
+ require 'carbon_ruby_sdk/models/azure_blob_file_sync_input'
24
+ require 'carbon_ruby_sdk/models/azure_blob_get_file_input'
25
+ require 'carbon_ruby_sdk/models/azure_blob_storage_authentication'
22
26
  require 'carbon_ruby_sdk/models/body_create_upload_file_uploadfile_post'
23
27
  require 'carbon_ruby_sdk/models/chunk_properties'
24
28
  require 'carbon_ruby_sdk/models/chunk_properties_nullable'
@@ -102,6 +106,7 @@ require 'carbon_ruby_sdk/models/o_auth_authentication'
102
106
  require 'carbon_ruby_sdk/models/o_auth_url_request'
103
107
  require 'carbon_ruby_sdk/models/oauth_based_connectors'
104
108
  require 'carbon_ruby_sdk/models/object_type'
109
+ require 'carbon_ruby_sdk/models/one_drive_authentication'
105
110
  require 'carbon_ruby_sdk/models/order_dir'
106
111
  require 'carbon_ruby_sdk/models/order_dir_v2'
107
112
  require 'carbon_ruby_sdk/models/organization_response'
@@ -208,6 +208,30 @@ describe 'IntegrationsApi' do
208
208
  end
209
209
  end
210
210
 
211
+ # unit tests for sync_azure_blob_files
212
+ # Azure Blob Files
213
+ # After optionally loading the items via /integrations/items/sync and integrations/items/list, use the container name and file name as the ID in this endpoint to sync them into Carbon. Additional parameters below can associate data with the selected items or modify the sync behavior
214
+ # @param azure_blob_file_sync_input
215
+ # @param [Hash] opts the optional parameters
216
+ # @return [GenericSuccessResponse]
217
+ describe 'sync_azure_blob_files test' do
218
+ it 'should work' do
219
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
220
+ end
221
+ end
222
+
223
+ # unit tests for sync_azure_blob_storage
224
+ # Azure Blob Storage Auth
225
+ # This endpoint can be used to connect Azure Blob Storage. For Azure Blob Storage, follow these steps: &lt;ol&gt; &lt;li&gt;Create a new Azure Storage account and grant the following permissions: &lt;ul&gt; &lt;li&gt;List containers.&lt;/li&gt; &lt;li&gt;Read from specific containers and blobs to sync with Carbon. Ensure any future containers or blobs carry the same permissions.&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;Generate a shared access signature (SAS) token or an access key for the storage account.&lt;/li&gt; &lt;/ol&gt; Once created, provide us with the following details to generate the connection URL: &lt;ol&gt; &lt;li&gt;Storage Account KeyName.&lt;/li&gt; &lt;li&gt;Storage Account Name.&lt;/li&gt; &lt;/ol&gt;
226
+ # @param azure_blob_auth_request
227
+ # @param [Hash] opts the optional parameters
228
+ # @return [OrganizationUserDataSourceAPI]
229
+ describe 'sync_azure_blob_storage test' do
230
+ it 'should work' do
231
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
232
+ end
233
+ end
234
+
211
235
  # unit tests for sync_confluence
212
236
  # Confluence Sync
213
237
  # This endpoint has been deprecated. Use /integrations/files/sync instead. After listing pages in a user&#39;s Confluence account, the set of selected page &#x60;ids&#x60; and the connected account&#39;s &#x60;data_source_id&#x60; can be passed into this endpoint to sync them into Carbon. Additional parameters listed below can be used to associate data to the selected pages or alter the behavior of the sync.
@@ -115,6 +115,18 @@ describe Carbon::AuthenticationProperty do
115
115
  end
116
116
  end
117
117
 
118
+ describe 'test attribute "account_name"' do
119
+ it 'should work' do
120
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
121
+ end
122
+ end
123
+
124
+ describe 'test attribute "account_key"' do
125
+ it 'should work' do
126
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
127
+ end
128
+ end
129
+
118
130
  describe 'test attribute "instance_subdomain"' do
119
131
  it 'should work' do
120
132
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Carbon
3
+
4
+ #Connect external data to LLMs, no matter the source.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Carbon::AzureBlobAuthRequest
14
+ describe Carbon::AzureBlobAuthRequest do
15
+ let(:instance) { Carbon::AzureBlobAuthRequest.new }
16
+
17
+ describe 'test an instance of AzureBlobAuthRequest' do
18
+ it 'should create an instance of AzureBlobAuthRequest' do
19
+ expect(instance).to be_instance_of(Carbon::AzureBlobAuthRequest)
20
+ end
21
+ end
22
+ describe 'test attribute "account_name"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "account_key"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "sync_source_items"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,112 @@
1
+ =begin
2
+ #Carbon
3
+
4
+ #Connect external data to LLMs, no matter the source.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Carbon::AzureBlobFileSyncInput
14
+ describe Carbon::AzureBlobFileSyncInput do
15
+ let(:instance) { Carbon::AzureBlobFileSyncInput.new }
16
+
17
+ describe 'test an instance of AzureBlobFileSyncInput' do
18
+ it 'should create an instance of AzureBlobFileSyncInput' do
19
+ expect(instance).to be_instance_of(Carbon::AzureBlobFileSyncInput)
20
+ end
21
+ end
22
+ describe 'test attribute "tags"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "ids"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "chunk_size"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "chunk_overlap"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "skip_embedding_generation"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "embedding_model"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "generate_sparse_vectors"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "prepend_filename_to_chunks"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "max_items_per_chunk"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "set_page_as_boundary"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "data_source_id"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "request_id"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
94
+ describe 'test attribute "use_ocr"' do
95
+ it 'should work' do
96
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
97
+ end
98
+ end
99
+
100
+ describe 'test attribute "parse_pdf_tables_with_ocr"' do
101
+ it 'should work' do
102
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
103
+ end
104
+ end
105
+
106
+ describe 'test attribute "file_sync_config"' do
107
+ it 'should work' do
108
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
109
+ end
110
+ end
111
+
112
+ end
@@ -0,0 +1,34 @@
1
+ =begin
2
+ #Carbon
3
+
4
+ #Connect external data to LLMs, no matter the source.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Carbon::AzureBlobGetFileInput
14
+ describe Carbon::AzureBlobGetFileInput do
15
+ let(:instance) { Carbon::AzureBlobGetFileInput.new }
16
+
17
+ describe 'test an instance of AzureBlobGetFileInput' do
18
+ it 'should create an instance of AzureBlobGetFileInput' do
19
+ expect(instance).to be_instance_of(Carbon::AzureBlobGetFileInput)
20
+ end
21
+ end
22
+ describe 'test attribute "id"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "container"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Carbon
3
+
4
+ #Connect external data to LLMs, no matter the source.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Carbon::AzureBlobStorageAuthentication
14
+ describe Carbon::AzureBlobStorageAuthentication do
15
+ let(:instance) { Carbon::AzureBlobStorageAuthentication.new }
16
+
17
+ describe 'test an instance of AzureBlobStorageAuthentication' do
18
+ it 'should create an instance of AzureBlobStorageAuthentication' do
19
+ expect(instance).to be_instance_of(Carbon::AzureBlobStorageAuthentication)
20
+ end
21
+ end
22
+ describe 'test attribute "source"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "account_name"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "account_key"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Carbon
3
+
4
+ #Connect external data to LLMs, no matter the source.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Carbon::OneDriveAuthentication
14
+ describe Carbon::OneDriveAuthentication do
15
+ let(:instance) { Carbon::OneDriveAuthentication.new }
16
+
17
+ describe 'test an instance of OneDriveAuthentication' do
18
+ it 'should create an instance of OneDriveAuthentication' do
19
+ expect(instance).to be_instance_of(Carbon::OneDriveAuthentication)
20
+ end
21
+ end
22
+ describe 'test attribute "source"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "access_token"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "refresh_token"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "tenant_name"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end