Class: Wire4Client::Billing
- Inherits:
-
Object
- Object
- Wire4Client::Billing
- Defined in:
- lib/wire4_client/models/billing.rb
Overview
Contiene la información de la factura
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#amount ⇒ Object
Monto total de la factura.
-
#emission_at ⇒ Object
Fecha y hora en que se emitió de la factura.
-
#end_date ⇒ Object
Fecha en que finaliza el periodo que se factura.
-
#id ⇒ Object
Identificador de la factura.
-
#start_date ⇒ Object
Fecha de inicio del periodo que se factura.
-
#status ⇒ Object
Estatus de la factura.
-
#transactions ⇒ Object
Returns the value of attribute transactions.
-
#url_pdf ⇒ Object
Url de la representación impresa en pdf de la factura.
-
#url_xml ⇒ Object
Url del archivo xml de la factura.
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 = {}) ⇒ Billing
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 = {}) ⇒ Billing
Initializes the object
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/wire4_client/models/billing.rb', line 98 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?(:'amount') self.amount = attributes[:'amount'] end if attributes.has_key?(:'emission_at') self.emission_at = attributes[:'emission_at'] end if attributes.has_key?(:'end_date') self.end_date = attributes[:'end_date'] end if attributes.has_key?(:'id') self.id = attributes[:'id'] end if attributes.has_key?(:'start_date') self.start_date = attributes[:'start_date'] end if attributes.has_key?(:'status') self.status = attributes[:'status'] end if attributes.has_key?(:'transactions') if (value = attributes[:'transactions']).is_a?(Array) self.transactions = value end end if attributes.has_key?(:'url_pdf') self.url_pdf = attributes[:'url_pdf'] end if attributes.has_key?(:'url_xml') self.url_xml = attributes[:'url_xml'] end end |
Instance Attribute Details
#amount ⇒ Object
Monto total de la factura
19 20 21 |
# File 'lib/wire4_client/models/billing.rb', line 19 def amount @amount end |
#emission_at ⇒ Object
Fecha y hora en que se emitió de la factura
22 23 24 |
# File 'lib/wire4_client/models/billing.rb', line 22 def emission_at @emission_at end |
#end_date ⇒ Object
Fecha en que finaliza el periodo que se factura
25 26 27 |
# File 'lib/wire4_client/models/billing.rb', line 25 def end_date @end_date end |
#id ⇒ Object
Identificador de la factura
28 29 30 |
# File 'lib/wire4_client/models/billing.rb', line 28 def id @id end |
#start_date ⇒ Object
Fecha de inicio del periodo que se factura
31 32 33 |
# File 'lib/wire4_client/models/billing.rb', line 31 def start_date @start_date end |
#status ⇒ Object
Estatus de la factura
34 35 36 |
# File 'lib/wire4_client/models/billing.rb', line 34 def status @status end |
#transactions ⇒ Object
Returns the value of attribute transactions.
36 37 38 |
# File 'lib/wire4_client/models/billing.rb', line 36 def transactions @transactions end |
#url_pdf ⇒ Object
Url de la representación impresa en pdf de la factura
39 40 41 |
# File 'lib/wire4_client/models/billing.rb', line 39 def url_pdf @url_pdf end |
#url_xml ⇒ Object
Url del archivo xml de la factura
42 43 44 |
# File 'lib/wire4_client/models/billing.rb', line 42 def url_xml @url_xml end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/wire4_client/models/billing.rb', line 67 def self.attribute_map { :'amount' => :'amount', :'emission_at' => :'emission_at', :'end_date' => :'end_date', :'id' => :'id', :'start_date' => :'start_date', :'status' => :'status', :'transactions' => :'transactions', :'url_pdf' => :'url_pdf', :'url_xml' => :'url_xml' } end |
.swagger_types ⇒ Object
Attribute type mapping.
82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/wire4_client/models/billing.rb', line 82 def self.swagger_types { :'amount' => :'Float', :'emission_at' => :'DateTime', :'end_date' => :'DateTime', :'id' => :'String', :'start_date' => :'DateTime', :'status' => :'String', :'transactions' => :'Array<BillingTransaction>', :'url_pdf' => :'String', :'url_xml' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'lib/wire4_client/models/billing.rb', line 170 def ==(o) return true if self.equal?(o) self.class == o.class && amount == o.amount && emission_at == o.emission_at && end_date == o.end_date && id == o.id && start_date == o.start_date && status == o.status && transactions == o.transactions && url_pdf == o.url_pdf && url_xml == o.url_xml end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
220 221 222 223 224 225 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 |
# File 'lib/wire4_client/models/billing.rb', line 220 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 = Wire4Client.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
286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/wire4_client/models/billing.rb', line 286 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
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/wire4_client/models/billing.rb', line 199 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
186 187 188 |
# File 'lib/wire4_client/models/billing.rb', line 186 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
192 193 194 |
# File 'lib/wire4_client/models/billing.rb', line 192 def hash [amount, emission_at, end_date, id, start_date, status, transactions, url_pdf, url_xml].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
145 146 147 148 |
# File 'lib/wire4_client/models/billing.rb', line 145 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
266 267 268 |
# File 'lib/wire4_client/models/billing.rb', line 266 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
272 273 274 275 276 277 278 279 280 |
# File 'lib/wire4_client/models/billing.rb', line 272 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
260 261 262 |
# File 'lib/wire4_client/models/billing.rb', line 260 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
152 153 154 155 156 |
# File 'lib/wire4_client/models/billing.rb', line 152 def valid? status_validator = EnumAttributeValidator.new('String', ['PAID', 'OMMITED', 'WAITING_PAYMENT', 'EMISSION_PENDING']) return false unless status_validator.valid?(@status) true end |