Class: CloudsmithApi::RepositoryTokenRefresh

Inherits:
Object
  • Object
show all
Defined in:
lib/cloudsmith-api/models/repository_token_refresh.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ RepositoryTokenRefresh

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 226

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  if attributes.has_key?(:'clients')
    self.clients = attributes[:'clients']
  end

  if attributes.has_key?(:'created_at')
    self.created_at = attributes[:'created_at']
  end

  if attributes.has_key?(:'created_by')
    self.created_by = attributes[:'created_by']
  end

  if attributes.has_key?(:'created_by_url')
    self.created_by_url = attributes[:'created_by_url']
  end

  if attributes.has_key?(:'default')
    self.default = attributes[:'default']
  end

  if attributes.has_key?(:'disable_url')
    self.disable_url = attributes[:'disable_url']
  end

  if attributes.has_key?(:'downloads')
    self.downloads = attributes[:'downloads']
  end

  if attributes.has_key?(:'enable_url')
    self.enable_url = attributes[:'enable_url']
  end

  if attributes.has_key?(:'eula_accepted')
    self.eula_accepted = attributes[:'eula_accepted']
  end

  if attributes.has_key?(:'eula_accepted_at')
    self.eula_accepted_at = attributes[:'eula_accepted_at']
  end

  if attributes.has_key?(:'eula_accepted_from')
    self.eula_accepted_from = attributes[:'eula_accepted_from']
  end

  if attributes.has_key?(:'eula_required')
    self.eula_required = attributes[:'eula_required']
  end

  if attributes.has_key?(:'has_limits')
    self.has_limits = attributes[:'has_limits']
  end

  if attributes.has_key?(:'identifier')
    self.identifier = attributes[:'identifier']
  end

  if attributes.has_key?(:'is_active')
    self.is_active = attributes[:'is_active']
  end

  if attributes.has_key?(:'is_limited')
    self.is_limited = attributes[:'is_limited']
  end

  if attributes.has_key?(:'limit_bandwidth')
    self.limit_bandwidth = attributes[:'limit_bandwidth']
  end

  if attributes.has_key?(:'limit_bandwidth_unit')
    self.limit_bandwidth_unit = attributes[:'limit_bandwidth_unit']
  end

  if attributes.has_key?(:'limit_date_range_from')
    self.limit_date_range_from = attributes[:'limit_date_range_from']
  end

  if attributes.has_key?(:'limit_date_range_to')
    self.limit_date_range_to = attributes[:'limit_date_range_to']
  end

  if attributes.has_key?(:'limit_num_clients')
    self.limit_num_clients = attributes[:'limit_num_clients']
  end

  if attributes.has_key?(:'limit_num_downloads')
    self.limit_num_downloads = attributes[:'limit_num_downloads']
  end

  if attributes.has_key?(:'limit_package_query')
    self.limit_package_query = attributes[:'limit_package_query']
  end

  if attributes.has_key?(:'limit_path_query')
    self.limit_path_query = attributes[:'limit_path_query']
  end

  if attributes.has_key?(:'metadata')
    self. = attributes[:'metadata']
  end

  if attributes.has_key?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.has_key?(:'refresh_url')
    self.refresh_url = attributes[:'refresh_url']
  end

  if attributes.has_key?(:'reset_url')
    self.reset_url = attributes[:'reset_url']
  end

  if attributes.has_key?(:'scheduled_reset_at')
    self.scheduled_reset_at = attributes[:'scheduled_reset_at']
  end

  if attributes.has_key?(:'scheduled_reset_period')
    self.scheduled_reset_period = attributes[:'scheduled_reset_period']
  end

  if attributes.has_key?(:'self_url')
    self.self_url = attributes[:'self_url']
  end

  if attributes.has_key?(:'slug_perm')
    self.slug_perm = attributes[:'slug_perm']
  end

  if attributes.has_key?(:'token')
    self.token = attributes[:'token']
  end

  if attributes.has_key?(:'updated_at')
    self.updated_at = attributes[:'updated_at']
  end

  if attributes.has_key?(:'updated_by')
    self.updated_by = attributes[:'updated_by']
  end

  if attributes.has_key?(:'updated_by_url')
    self.updated_by_url = attributes[:'updated_by_url']
  end

  if attributes.has_key?(:'usage')
    self.usage = attributes[:'usage']
  end

  if attributes.has_key?(:'user')
    self.user = attributes[:'user']
  end

  if attributes.has_key?(:'user_url')
    self.user_url = attributes[:'user_url']
  end
end

Instance Attribute Details

#clientsObject

Returns the value of attribute clients.



18
19
20
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 18

def clients
  @clients
end

#created_atObject

The datetime the token was updated at.



21
22
23
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 21

def created_at
  @created_at
end

#created_byObject

Returns the value of attribute created_by.



24
25
26
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 24

def created_by
  @created_by
end

#created_by_urlObject

Returns the value of attribute created_by_url.



27
28
29
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 27

def created_by_url
  @created_by_url
end

#defaultObject

If selected this is the default token for this repository.



30
31
32
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 30

def default
  @default
end

#disable_urlObject

Returns the value of attribute disable_url.



33
34
35
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 33

def disable_url
  @disable_url
end

#downloadsObject

Returns the value of attribute downloads.



36
37
38
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 36

def downloads
  @downloads
end

#enable_urlObject

Returns the value of attribute enable_url.



39
40
41
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 39

def enable_url
  @enable_url
end

#eula_acceptedObject

Returns the value of attribute eula_accepted.



42
43
44
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 42

def eula_accepted
  @eula_accepted
end

#eula_accepted_atObject

The datetime the EULA was accepted at.



45
46
47
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 45

def eula_accepted_at
  @eula_accepted_at
end

#eula_accepted_fromObject

Returns the value of attribute eula_accepted_from.



48
49
50
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 48

def eula_accepted_from
  @eula_accepted_from
end

#eula_requiredObject

If checked, a EULA acceptance is required for this token.



51
52
53
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 51

def eula_required
  @eula_required
end

#has_limitsObject

Returns the value of attribute has_limits.



54
55
56
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 54

def has_limits
  @has_limits
end

#identifierObject

Returns the value of attribute identifier.



57
58
59
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 57

def identifier
  @identifier
end

#is_activeObject

If enabled, the token will allow downloads based on configured restrictions (if any).



60
61
62
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 60

def is_active
  @is_active
end

#is_limitedObject

Returns the value of attribute is_limited.



63
64
65
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 63

def is_limited
  @is_limited
end

#limit_bandwidthObject

The maximum download bandwidth allowed for the token. Values are expressed as the selected unit of bandwidth. Please note that since downloads are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point.



66
67
68
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 66

def limit_bandwidth
  @limit_bandwidth
end

#limit_bandwidth_unitObject

Returns the value of attribute limit_bandwidth_unit.



69
70
71
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 69

def limit_bandwidth_unit
  @limit_bandwidth_unit
end

#limit_date_range_fromObject

The starting date/time the token is allowed to be used from.



72
73
74
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 72

def limit_date_range_from
  @limit_date_range_from
end

#limit_date_range_toObject

The ending date/time the token is allowed to be used until.



75
76
77
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 75

def limit_date_range_to
  @limit_date_range_to
end

#limit_num_clientsObject

The maximum number of unique clients allowed for the token. Please note that since clients are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point.



78
79
80
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 78

def limit_num_clients
  @limit_num_clients
end

#limit_num_downloadsObject

The maximum number of downloads allowed for the token. Please note that since downloads are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point.



81
82
83
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 81

def limit_num_downloads
  @limit_num_downloads
end

#limit_package_queryObject

The package-based search query to apply to restrict downloads to. This uses the same syntax as the standard search used for repositories, and also supports boolean logic operators such as OR/AND/NOT and parentheses for grouping. This will still allow access to non-package files, such as metadata.



84
85
86
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 84

def limit_package_query
  @limit_package_query
end

#limit_path_queryObject

The path-based search query to apply to restrict downloads to. This supports boolean logic operators such as OR/AND/NOT and parentheses for grouping. The path evaluated does not include the domain name, the namespace, the entitlement code used, the package format, etc. and it always starts with a forward slash.



87
88
89
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 87

def limit_path_query
  @limit_path_query
end

#metadataObject

Returns the value of attribute metadata.



90
91
92
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 90

def 
  @metadata
end

#nameObject

Returns the value of attribute name.



93
94
95
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 93

def name
  @name
end

#refresh_urlObject

Returns the value of attribute refresh_url.



96
97
98
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 96

def refresh_url
  @refresh_url
end

#reset_urlObject

Returns the value of attribute reset_url.



99
100
101
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 99

def reset_url
  @reset_url
end

#scheduled_reset_atObject

The time at which the scheduled reset period has elapsed and the token limits were automatically reset to zero.



102
103
104
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 102

def scheduled_reset_at
  @scheduled_reset_at
end

#scheduled_reset_periodObject

Returns the value of attribute scheduled_reset_period.



105
106
107
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 105

def scheduled_reset_period
  @scheduled_reset_period
end

#self_urlObject

Returns the value of attribute self_url.



108
109
110
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 108

def self_url
  @self_url
end

#slug_permObject

Returns the value of attribute slug_perm.



111
112
113
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 111

def slug_perm
  @slug_perm
end

#tokenObject

Returns the value of attribute token.



114
115
116
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 114

def token
  @token
end

#updated_atObject

The datetime the token was updated at.



117
118
119
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 117

def updated_at
  @updated_at
end

#updated_byObject

Returns the value of attribute updated_by.



120
121
122
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 120

def updated_by
  @updated_by
end

#updated_by_urlObject

Returns the value of attribute updated_by_url.



123
124
125
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 123

def updated_by_url
  @updated_by_url
end

#usageObject

Returns the value of attribute usage.



126
127
128
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 126

def usage
  @usage
end

#userObject

Returns the value of attribute user.



129
130
131
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 129

def user
  @user
end

#user_urlObject

Returns the value of attribute user_url.



132
133
134
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 132

def user_url
  @user_url
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 135

def self.attribute_map
  {
    :'clients' => :'clients',
    :'created_at' => :'created_at',
    :'created_by' => :'created_by',
    :'created_by_url' => :'created_by_url',
    :'default' => :'default',
    :'disable_url' => :'disable_url',
    :'downloads' => :'downloads',
    :'enable_url' => :'enable_url',
    :'eula_accepted' => :'eula_accepted',
    :'eula_accepted_at' => :'eula_accepted_at',
    :'eula_accepted_from' => :'eula_accepted_from',
    :'eula_required' => :'eula_required',
    :'has_limits' => :'has_limits',
    :'identifier' => :'identifier',
    :'is_active' => :'is_active',
    :'is_limited' => :'is_limited',
    :'limit_bandwidth' => :'limit_bandwidth',
    :'limit_bandwidth_unit' => :'limit_bandwidth_unit',
    :'limit_date_range_from' => :'limit_date_range_from',
    :'limit_date_range_to' => :'limit_date_range_to',
    :'limit_num_clients' => :'limit_num_clients',
    :'limit_num_downloads' => :'limit_num_downloads',
    :'limit_package_query' => :'limit_package_query',
    :'limit_path_query' => :'limit_path_query',
    :'metadata' => :'metadata',
    :'name' => :'name',
    :'refresh_url' => :'refresh_url',
    :'reset_url' => :'reset_url',
    :'scheduled_reset_at' => :'scheduled_reset_at',
    :'scheduled_reset_period' => :'scheduled_reset_period',
    :'self_url' => :'self_url',
    :'slug_perm' => :'slug_perm',
    :'token' => :'token',
    :'updated_at' => :'updated_at',
    :'updated_by' => :'updated_by',
    :'updated_by_url' => :'updated_by_url',
    :'usage' => :'usage',
    :'user' => :'user',
    :'user_url' => :'user_url'
  }
end

.swagger_typesObject

Attribute type mapping.



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 180

def self.swagger_types
  {
    :'clients' => :'Integer',
    :'created_at' => :'String',
    :'created_by' => :'String',
    :'created_by_url' => :'String',
    :'default' => :'BOOLEAN',
    :'disable_url' => :'String',
    :'downloads' => :'Integer',
    :'enable_url' => :'String',
    :'eula_accepted' => :'Object',
    :'eula_accepted_at' => :'String',
    :'eula_accepted_from' => :'String',
    :'eula_required' => :'BOOLEAN',
    :'has_limits' => :'BOOLEAN',
    :'identifier' => :'Integer',
    :'is_active' => :'BOOLEAN',
    :'is_limited' => :'BOOLEAN',
    :'limit_bandwidth' => :'Integer',
    :'limit_bandwidth_unit' => :'String',
    :'limit_date_range_from' => :'String',
    :'limit_date_range_to' => :'String',
    :'limit_num_clients' => :'Integer',
    :'limit_num_downloads' => :'Integer',
    :'limit_package_query' => :'String',
    :'limit_path_query' => :'String',
    :'metadata' => :'Object',
    :'name' => :'String',
    :'refresh_url' => :'String',
    :'reset_url' => :'String',
    :'scheduled_reset_at' => :'String',
    :'scheduled_reset_period' => :'String',
    :'self_url' => :'String',
    :'slug_perm' => :'String',
    :'token' => :'String',
    :'updated_at' => :'String',
    :'updated_by' => :'String',
    :'updated_by_url' => :'String',
    :'usage' => :'String',
    :'user' => :'String',
    :'user_url' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 404

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      clients == o.clients &&
      created_at == o.created_at &&
      created_by == o.created_by &&
      created_by_url == o.created_by_url &&
      default == o.default &&
      disable_url == o.disable_url &&
      downloads == o.downloads &&
      enable_url == o.enable_url &&
      eula_accepted == o.eula_accepted &&
      eula_accepted_at == o.eula_accepted_at &&
      eula_accepted_from == o.eula_accepted_from &&
      eula_required == o.eula_required &&
      has_limits == o.has_limits &&
      identifier == o.identifier &&
      is_active == o.is_active &&
      is_limited == o.is_limited &&
      limit_bandwidth == o.limit_bandwidth &&
      limit_bandwidth_unit == o.limit_bandwidth_unit &&
      limit_date_range_from == o.limit_date_range_from &&
      limit_date_range_to == o.limit_date_range_to &&
      limit_num_clients == o.limit_num_clients &&
      limit_num_downloads == o.limit_num_downloads &&
      limit_package_query == o.limit_package_query &&
      limit_path_query == o.limit_path_query &&
       == o. &&
      name == o.name &&
      refresh_url == o.refresh_url &&
      reset_url == o.reset_url &&
      scheduled_reset_at == o.scheduled_reset_at &&
      scheduled_reset_period == o.scheduled_reset_period &&
      self_url == o.self_url &&
      slug_perm == o.slug_perm &&
      token == o.token &&
      updated_at == o.updated_at &&
      updated_by == o.updated_by &&
      updated_by_url == o.updated_by_url &&
      usage == o.usage &&
      user == o.user &&
      user_url == o.user_url
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 484

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = CloudsmithApi.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



550
551
552
553
554
555
556
557
558
559
560
561
562
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 550

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 463

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


450
451
452
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 450

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



456
457
458
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 456

def hash
  [clients, created_at, created_by, created_by_url, default, disable_url, downloads, enable_url, eula_accepted, eula_accepted_at, eula_accepted_from, eula_required, has_limits, identifier, is_active, is_limited, limit_bandwidth, limit_bandwidth_unit, limit_date_range_from, limit_date_range_to, limit_num_clients, limit_num_downloads, limit_package_query, limit_path_query, , name, refresh_url, reset_url, scheduled_reset_at, scheduled_reset_period, self_url, slug_perm, token, updated_at, updated_by, updated_by_url, usage, user, user_url].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



391
392
393
394
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 391

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



530
531
532
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 530

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



536
537
538
539
540
541
542
543
544
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 536

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



524
525
526
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 524

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



398
399
400
# File 'lib/cloudsmith-api/models/repository_token_refresh.rb', line 398

def valid?
  true
end