lib/docusign_esign/models/reminders.rb in docusign_esign-2.13.0.rc1 vs lib/docusign_esign/models/reminders.rb in docusign_esign-3.0.0.rc1

- old
+ new

@@ -1,11 +1,11 @@ =begin #DocuSign REST API #The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. -OpenAPI spec version: v2 +OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git =end @@ -21,10 +21,11 @@ attr_accessor :reminder_enabled # An interger that sets the interval, in days, between reminder emails. attr_accessor :reminder_frequency + # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'reminder_delay' => :'reminderDelay', :'reminder_enabled' => :'reminderEnabled', @@ -45,11 +46,11 @@ # @param [Hash] attributes Model attributes in the form of hash 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 } + attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v} if attributes.has_key?(:'reminderDelay') self.reminder_delay = attributes[:'reminderDelay'] end @@ -58,23 +59,24 @@ end if attributes.has_key?(:'reminderFrequency') self.reminder_frequency = attributes[:'reminderFrequency'] end + end # Show invalid properties with the reasons. Usually used together with valid? - # @return Array for valid properties with the reasons + # @return Array for valid properies with the reasons def list_invalid_properties invalid_properties = Array.new - invalid_properties + return invalid_properties end # Check to see if the all the properties in the model are valid # @return true if the model is valid def valid? - true + return true end # Checks equality by comparing each attribute. # @param [Object] Object to be compared def ==(o) @@ -102,14 +104,14 @@ # @return [Object] Returns the model itself 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 + # 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) }) + 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 @@ -187,11 +189,11 @@ # For object, use to_hash. Otherwise, just return the value # @param [Object] value Any valid value # @return [Hash] Returns the value in the form of hash def _to_hash(value) if value.is_a?(Array) - value.compact.map { |v| _to_hash(v) } + 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 @@ -200,6 +202,7 @@ value end end end + end