Class: CrelateClient::ExtResumeOrgState
- Inherits:
-
Object
- Object
- CrelateClient::ExtResumeOrgState
- Defined in:
- lib/crelate_client/models/ext_resume_org_state.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#career_builder_activated ⇒ Object
Returns the value of attribute career_builder_activated.
-
#career_builder_password ⇒ Object
Returns the value of attribute career_builder_password.
-
#career_builder_username ⇒ Object
Returns the value of attribute career_builder_username.
-
#credits ⇒ Object
Returns the value of attribute credits.
-
#eligible ⇒ Object
Returns the value of attribute eligible.
-
#external_id ⇒ Object
Returns the value of attribute external_id.
-
#id ⇒ Object
Returns the value of attribute id.
-
#last_recharge_on ⇒ Object
Returns the value of attribute last_recharge_on.
-
#name ⇒ Object
Returns the value of attribute name.
-
#package_activated ⇒ Object
Returns the value of attribute package_activated.
-
#package_id ⇒ Object
Returns the value of attribute package_id.
-
#package_status ⇒ Object
Returns the value of attribute package_status.
-
#package_status_name ⇒ Object
Returns the value of attribute package_status_name.
-
#recharge_behavior ⇒ Object
Returns the value of attribute recharge_behavior.
-
#recharge_behavior_name ⇒ Object
Returns the value of attribute recharge_behavior_name.
-
#recharge_product_id ⇒ Object
Returns the value of attribute recharge_product_id.
-
#recharge_quantity ⇒ Object
Returns the value of attribute recharge_quantity.
-
#recharge_total ⇒ Object
Returns the value of attribute recharge_total.
-
#remaining_credits ⇒ Object
Returns the value of attribute remaining_credits.
-
#used_credits ⇒ Object
Returns the value of attribute used_credits.
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 = {}) ⇒ ExtResumeOrgState
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 = {}) ⇒ ExtResumeOrgState
Initializes the object
134 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 178 179 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 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 134 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?(:'CareerBuilderActivated') self.career_builder_activated = attributes[:'CareerBuilderActivated'] end if attributes.has_key?(:'CareerBuilderPassword') self.career_builder_password = attributes[:'CareerBuilderPassword'] end if attributes.has_key?(:'CareerBuilderUsername') self.career_builder_username = attributes[:'CareerBuilderUsername'] end if attributes.has_key?(:'Credits') self.credits = attributes[:'Credits'] end if attributes.has_key?(:'Eligible') self.eligible = attributes[:'Eligible'] end if attributes.has_key?(:'ExternalId') self.external_id = attributes[:'ExternalId'] end if attributes.has_key?(:'Id') self.id = attributes[:'Id'] end if attributes.has_key?(:'LastRechargeOn') self.last_recharge_on = attributes[:'LastRechargeOn'] end if attributes.has_key?(:'Name') self.name = attributes[:'Name'] end if attributes.has_key?(:'PackageActivated') self.package_activated = attributes[:'PackageActivated'] end if attributes.has_key?(:'PackageId') self.package_id = attributes[:'PackageId'] end if attributes.has_key?(:'PackageStatus') self.package_status = attributes[:'PackageStatus'] end if attributes.has_key?(:'PackageStatusName') self.package_status_name = attributes[:'PackageStatusName'] end if attributes.has_key?(:'RechargeBehavior') self.recharge_behavior = attributes[:'RechargeBehavior'] end if attributes.has_key?(:'RechargeBehaviorName') self.recharge_behavior_name = attributes[:'RechargeBehaviorName'] end if attributes.has_key?(:'RechargeProductId') self.recharge_product_id = attributes[:'RechargeProductId'] end if attributes.has_key?(:'RechargeQuantity') self.recharge_quantity = attributes[:'RechargeQuantity'] end if attributes.has_key?(:'RechargeTotal') self.recharge_total = attributes[:'RechargeTotal'] end if attributes.has_key?(:'RemainingCredits') self.remaining_credits = attributes[:'RemainingCredits'] end if attributes.has_key?(:'UsedCredits') self.used_credits = attributes[:'UsedCredits'] end end |
Instance Attribute Details
#career_builder_activated ⇒ Object
Returns the value of attribute career_builder_activated.
18 19 20 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 18 def career_builder_activated @career_builder_activated end |
#career_builder_password ⇒ Object
Returns the value of attribute career_builder_password.
20 21 22 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 20 def career_builder_password @career_builder_password end |
#career_builder_username ⇒ Object
Returns the value of attribute career_builder_username.
22 23 24 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 22 def career_builder_username @career_builder_username end |
#credits ⇒ Object
Returns the value of attribute credits.
24 25 26 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 24 def credits @credits end |
#eligible ⇒ Object
Returns the value of attribute eligible.
26 27 28 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 26 def eligible @eligible end |
#external_id ⇒ Object
Returns the value of attribute external_id.
28 29 30 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 28 def external_id @external_id end |
#id ⇒ Object
Returns the value of attribute id.
30 31 32 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 30 def id @id end |
#last_recharge_on ⇒ Object
Returns the value of attribute last_recharge_on.
32 33 34 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 32 def last_recharge_on @last_recharge_on end |
#name ⇒ Object
Returns the value of attribute name.
34 35 36 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 34 def name @name end |
#package_activated ⇒ Object
Returns the value of attribute package_activated.
36 37 38 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 36 def package_activated @package_activated end |
#package_id ⇒ Object
Returns the value of attribute package_id.
38 39 40 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 38 def package_id @package_id end |
#package_status ⇒ Object
Returns the value of attribute package_status.
40 41 42 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 40 def package_status @package_status end |
#package_status_name ⇒ Object
Returns the value of attribute package_status_name.
42 43 44 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 42 def package_status_name @package_status_name end |
#recharge_behavior ⇒ Object
Returns the value of attribute recharge_behavior.
44 45 46 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 44 def recharge_behavior @recharge_behavior end |
#recharge_behavior_name ⇒ Object
Returns the value of attribute recharge_behavior_name.
46 47 48 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 46 def recharge_behavior_name @recharge_behavior_name end |
#recharge_product_id ⇒ Object
Returns the value of attribute recharge_product_id.
48 49 50 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 48 def recharge_product_id @recharge_product_id end |
#recharge_quantity ⇒ Object
Returns the value of attribute recharge_quantity.
50 51 52 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 50 def recharge_quantity @recharge_quantity end |
#recharge_total ⇒ Object
Returns the value of attribute recharge_total.
52 53 54 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 52 def recharge_total @recharge_total end |
#remaining_credits ⇒ Object
Returns the value of attribute remaining_credits.
54 55 56 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 54 def remaining_credits @remaining_credits end |
#used_credits ⇒ Object
Returns the value of attribute used_credits.
56 57 58 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 56 def used_credits @used_credits end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 81 def self.attribute_map { :'career_builder_activated' => :'CareerBuilderActivated', :'career_builder_password' => :'CareerBuilderPassword', :'career_builder_username' => :'CareerBuilderUsername', :'credits' => :'Credits', :'eligible' => :'Eligible', :'external_id' => :'ExternalId', :'id' => :'Id', :'last_recharge_on' => :'LastRechargeOn', :'name' => :'Name', :'package_activated' => :'PackageActivated', :'package_id' => :'PackageId', :'package_status' => :'PackageStatus', :'package_status_name' => :'PackageStatusName', :'recharge_behavior' => :'RechargeBehavior', :'recharge_behavior_name' => :'RechargeBehaviorName', :'recharge_product_id' => :'RechargeProductId', :'recharge_quantity' => :'RechargeQuantity', :'recharge_total' => :'RechargeTotal', :'remaining_credits' => :'RemainingCredits', :'used_credits' => :'UsedCredits' } end |
.swagger_types ⇒ Object
Attribute type mapping.
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 107 def self.swagger_types { :'career_builder_activated' => :'BOOLEAN', :'career_builder_password' => :'String', :'career_builder_username' => :'String', :'credits' => :'Integer', :'eligible' => :'BOOLEAN', :'external_id' => :'String', :'id' => :'String', :'last_recharge_on' => :'DateTime', :'name' => :'String', :'package_activated' => :'BOOLEAN', :'package_id' => :'String', :'package_status' => :'Integer', :'package_status_name' => :'String', :'recharge_behavior' => :'Integer', :'recharge_behavior_name' => :'String', :'recharge_product_id' => :'Integer', :'recharge_quantity' => :'Integer', :'recharge_total' => :'Float', :'remaining_credits' => :'Integer', :'used_credits' => :'Integer' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 261 def ==(o) return true if self.equal?(o) self.class == o.class && career_builder_activated == o.career_builder_activated && career_builder_password == o.career_builder_password && career_builder_username == o.career_builder_username && credits == o.credits && eligible == o.eligible && external_id == o.external_id && id == o.id && last_recharge_on == o.last_recharge_on && name == o.name && package_activated == o.package_activated && package_id == o.package_id && package_status == o.package_status && package_status_name == o.package_status_name && recharge_behavior == o.recharge_behavior && recharge_behavior_name == o.recharge_behavior_name && recharge_product_id == o.recharge_product_id && recharge_quantity == o.recharge_quantity && recharge_total == o.recharge_total && remaining_credits == o.remaining_credits && used_credits == o.used_credits end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
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 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 322 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 = CrelateClient.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
388 389 390 391 392 393 394 395 396 397 398 399 400 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 388 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
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 301 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
288 289 290 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 288 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
294 295 296 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 294 def hash [career_builder_activated, career_builder_password, career_builder_username, credits, eligible, external_id, id, last_recharge_on, name, package_activated, package_id, package_status, package_status_name, recharge_behavior, recharge_behavior_name, recharge_product_id, recharge_quantity, recharge_total, remaining_credits, used_credits].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
224 225 226 227 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 224 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)
368 369 370 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 368 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
374 375 376 377 378 379 380 381 382 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 374 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
362 363 364 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 362 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
231 232 233 234 235 236 237 |
# File 'lib/crelate_client/models/ext_resume_org_state.rb', line 231 def valid? package_status_validator = EnumAttributeValidator.new('Integer', ["1", "91", "92"]) return false unless package_status_validator.valid?(@package_status) recharge_behavior_validator = EnumAttributeValidator.new('Integer', ["1", "2"]) return false unless recharge_behavior_validator.valid?(@recharge_behavior) return true end |