Class: DocuSign_WebForms::OAuth::OAuthToken
- Inherits:
-
Object
- Object
- DocuSign_WebForms::OAuth::OAuthToken
- Defined in:
- lib/docusign_webforms/client/auth/oauth.rb
Instance Attribute Summary collapse
-
#access_token ⇒ Object
The account ID.
-
#data ⇒ Object
Returns the value of attribute data.
-
#expires_in ⇒ Object
Returns the value of attribute expires_in.
-
#refresh_token ⇒ Object
Reserved: TBD.
-
#scope ⇒ Object
Reserved: TBD.
-
#token_type ⇒ Object
Reserved: TBD.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ OAuthToken
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ OAuthToken
Initializes the object
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 459 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?(:'accessToken') self.access_token = attributes[:'accessToken'] end if attributes.has_key?(:'scope') self.scope = attributes[:'scope'] end if attributes.has_key?(:'refreshToken') self.refresh_token = attributes[:'refreshToken'] end if attributes.has_key?(:'expiresIn') self.expires_in = attributes[:'expiresIn'] end if attributes.has_key?(:'tokenType') self.token_type = attributes[:'tokenType'] end if attributes.has_key?(:'data') if (value = attributes[:'data']).is_a?(Array) self.data = value end end end |
Instance Attribute Details
#access_token ⇒ Object
The account ID.
416 417 418 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 416 def access_token @access_token end |
#data ⇒ Object
Returns the value of attribute data.
419 420 421 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 419 def data @data end |
#expires_in ⇒ Object
Returns the value of attribute expires_in.
422 423 424 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 422 def expires_in @expires_in end |
#refresh_token ⇒ Object
Reserved: TBD
425 426 427 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 425 def refresh_token @refresh_token end |
#scope ⇒ Object
Reserved: TBD
428 429 430 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 428 def scope @scope end |
#token_type ⇒ Object
Reserved: TBD
431 432 433 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 431 def token_type @token_type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
434 435 436 437 438 439 440 441 442 443 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 434 def self.attribute_map { :'access_token' => :'access_token', :'data' => :'data', :'expires_in' => :'expires_in', :'refresh_token' => :'refresh_token', :'scope' => :'scope', :'token_type' => :'token_type' } end |
.swagger_types ⇒ Object
Attribute type mapping.
446 447 448 449 450 451 452 453 454 455 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 446 def self.swagger_types { :'access_token' => :'String', :'expires_in' => :'String', :'refresh_token' => :'String', :'scope' => :'String', :'data' => :'Array<NameValue>', :'token_type' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
507 508 509 510 511 512 513 514 515 516 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 507 def ==(o) return true if self.equal?(o) self.class == o.class && access_token == o.access_token && data == o.data && expires_in == o.expires_in && refresh_token == o.refresh_token && token_type == o.token_type && scope == o.scope end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 554 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 = DocuSign_WebForms.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
620 621 622 623 624 625 626 627 628 629 630 631 632 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 620 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
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 533 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 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
520 521 522 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 520 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
526 527 528 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 526 def hash [expires_in, data, access_token, refresh_token, scope, token_type].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
494 495 496 497 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 494 def list_invalid_properties invalid_properties = Array.new return invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
600 601 602 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 600 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
606 607 608 609 610 611 612 613 614 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 606 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_s ⇒ String
Returns the string representation of the object
594 595 596 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 594 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
501 502 503 |
# File 'lib/docusign_webforms/client/auth/oauth.rb', line 501 def valid? return true end |