Class: Kendama::Announcement
- Inherits:
-
Object
- Object
- Kendama::Announcement
- Defined in:
- lib/kendama/models/announcement.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#address ⇒ Object
本店又は主たる事務所の所在地(法人).
-
#address_city_code ⇒ Object
本店又は主たる事務所の所在地市区町村コード(法人).
-
#address_inside ⇒ Object
国内において行う資産の譲渡等に係る事務所、事業所その他これらに準ずるものの所在地.
-
#address_inside_city_code ⇒ Object
国内において行う資産の譲渡等に係る事務所、事業所その他これらに準ずるものの所在地市区町村コード.
-
#address_inside_prefecture_code ⇒ Object
国内において行う資産の譲渡等に係る事務所、事業所その他これらに準ずるものの所在地都道府県コード.
-
#address_prefecture_code ⇒ Object
本店又は主たる事務所の所在地都道府県コード(法人).
-
#address_request ⇒ Object
本店又は主たる事務所の所在地(公表申出).
-
#address_request_city_code ⇒ Object
本店又は主たる事務所の所在地市区町村コード(公表申出).
-
#address_request_prefecture_code ⇒ Object
本店又は主たる事務所の所在地都道府県コード(公表申出).
-
#correct ⇒ Object
訂正区分.
-
#country ⇒ Object
国内外区分.
-
#disposal_date ⇒ Object
取消年月日.
-
#expire_date ⇒ Object
失効年月日.
-
#kana ⇒ Object
日本語(カナ).
-
#kind ⇒ Object
人格区分.
-
#latest ⇒ Object
最新履歴.
-
#name ⇒ Object
氏名又は名称.
-
#popular_name_previous_name ⇒ Object
通称・旧姓.
-
#process ⇒ Object
事業者処理区分.
-
#registrated_number ⇒ Object
登録番号.
-
#registration_date ⇒ Object
登録年月日.
-
#sequence_number ⇒ Object
一連番号.
-
#trade_name ⇒ Object
主たる屋号.
-
#update_date ⇒ Object
更新年月日.
Class Method Summary collapse
-
._deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Announcement
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 = {}) ⇒ Announcement
Initializes the object
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 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 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 |
# File 'lib/kendama/models/announcement.rb', line 185 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `Kendama::Announcement` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `Kendama::Announcement`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'sequence_number') self.sequence_number = attributes[:'sequence_number'] else self.sequence_number = nil end if attributes.key?(:'registrated_number') self.registrated_number = attributes[:'registrated_number'] else self.registrated_number = nil end if attributes.key?(:'process') self.process = attributes[:'process'] else self.process = nil end if attributes.key?(:'correct') self.correct = attributes[:'correct'] else self.correct = nil end if attributes.key?(:'kind') self.kind = attributes[:'kind'] else self.kind = nil end if attributes.key?(:'country') self.country = attributes[:'country'] else self.country = nil end if attributes.key?(:'latest') self.latest = attributes[:'latest'] else self.latest = nil end if attributes.key?(:'registration_date') self.registration_date = attributes[:'registration_date'] else self.registration_date = nil end if attributes.key?(:'update_date') self.update_date = attributes[:'update_date'] else self.update_date = nil end if attributes.key?(:'disposal_date') self.disposal_date = attributes[:'disposal_date'] else self.disposal_date = nil end if attributes.key?(:'expire_date') self.expire_date = attributes[:'expire_date'] else self.expire_date = nil end if attributes.key?(:'address') self.address = attributes[:'address'] else self.address = nil end if attributes.key?(:'address_prefecture_code') self.address_prefecture_code = attributes[:'address_prefecture_code'] else self.address_prefecture_code = nil end if attributes.key?(:'address_city_code') self.address_city_code = attributes[:'address_city_code'] else self.address_city_code = nil end if attributes.key?(:'address_request') self.address_request = attributes[:'address_request'] else self.address_request = nil end if attributes.key?(:'address_request_prefecture_code') self.address_request_prefecture_code = attributes[:'address_request_prefecture_code'] else self.address_request_prefecture_code = nil end if attributes.key?(:'address_request_city_code') self.address_request_city_code = attributes[:'address_request_city_code'] else self.address_request_city_code = nil end if attributes.key?(:'kana') self.kana = attributes[:'kana'] else self.kana = nil end if attributes.key?(:'name') self.name = attributes[:'name'] else self.name = nil end if attributes.key?(:'address_inside') self.address_inside = attributes[:'address_inside'] else self.address_inside = nil end if attributes.key?(:'address_inside_prefecture_code') self.address_inside_prefecture_code = attributes[:'address_inside_prefecture_code'] end if attributes.key?(:'address_inside_city_code') self.address_inside_city_code = attributes[:'address_inside_city_code'] else self.address_inside_city_code = nil end if attributes.key?(:'trade_name') self.trade_name = attributes[:'trade_name'] else self.trade_name = nil end if attributes.key?(:'popular_name_previous_name') self.popular_name_previous_name = attributes[:'popular_name_previous_name'] else self.popular_name_previous_name = nil end end |
Instance Attribute Details
#address ⇒ Object
本店又は主たる事務所の所在地(法人)
52 53 54 |
# File 'lib/kendama/models/announcement.rb', line 52 def address @address end |
#address_city_code ⇒ Object
本店又は主たる事務所の所在地市区町村コード(法人)
58 59 60 |
# File 'lib/kendama/models/announcement.rb', line 58 def address_city_code @address_city_code end |
#address_inside ⇒ Object
国内において行う資産の譲渡等に係る事務所、事業所その他これらに準ずるものの所在地
76 77 78 |
# File 'lib/kendama/models/announcement.rb', line 76 def address_inside @address_inside end |
#address_inside_city_code ⇒ Object
国内において行う資産の譲渡等に係る事務所、事業所その他これらに準ずるものの所在地市区町村コード
82 83 84 |
# File 'lib/kendama/models/announcement.rb', line 82 def address_inside_city_code @address_inside_city_code end |
#address_inside_prefecture_code ⇒ Object
国内において行う資産の譲渡等に係る事務所、事業所その他これらに準ずるものの所在地都道府県コード
79 80 81 |
# File 'lib/kendama/models/announcement.rb', line 79 def address_inside_prefecture_code @address_inside_prefecture_code end |
#address_prefecture_code ⇒ Object
本店又は主たる事務所の所在地都道府県コード(法人)
55 56 57 |
# File 'lib/kendama/models/announcement.rb', line 55 def address_prefecture_code @address_prefecture_code end |
#address_request ⇒ Object
本店又は主たる事務所の所在地(公表申出)
61 62 63 |
# File 'lib/kendama/models/announcement.rb', line 61 def address_request @address_request end |
#address_request_city_code ⇒ Object
本店又は主たる事務所の所在地市区町村コード(公表申出)
67 68 69 |
# File 'lib/kendama/models/announcement.rb', line 67 def address_request_city_code @address_request_city_code end |
#address_request_prefecture_code ⇒ Object
本店又は主たる事務所の所在地都道府県コード(公表申出)
64 65 66 |
# File 'lib/kendama/models/announcement.rb', line 64 def address_request_prefecture_code @address_request_prefecture_code end |
#correct ⇒ Object
訂正区分
28 29 30 |
# File 'lib/kendama/models/announcement.rb', line 28 def correct @correct end |
#country ⇒ Object
国内外区分
34 35 36 |
# File 'lib/kendama/models/announcement.rb', line 34 def country @country end |
#disposal_date ⇒ Object
取消年月日
46 47 48 |
# File 'lib/kendama/models/announcement.rb', line 46 def disposal_date @disposal_date end |
#expire_date ⇒ Object
失効年月日
49 50 51 |
# File 'lib/kendama/models/announcement.rb', line 49 def expire_date @expire_date end |
#kana ⇒ Object
日本語(カナ)
70 71 72 |
# File 'lib/kendama/models/announcement.rb', line 70 def kana @kana end |
#kind ⇒ Object
人格区分
31 32 33 |
# File 'lib/kendama/models/announcement.rb', line 31 def kind @kind end |
#latest ⇒ Object
最新履歴
37 38 39 |
# File 'lib/kendama/models/announcement.rb', line 37 def latest @latest end |
#name ⇒ Object
氏名又は名称
73 74 75 |
# File 'lib/kendama/models/announcement.rb', line 73 def name @name end |
#popular_name_previous_name ⇒ Object
通称・旧姓
88 89 90 |
# File 'lib/kendama/models/announcement.rb', line 88 def popular_name_previous_name @popular_name_previous_name end |
#process ⇒ Object
事業者処理区分
25 26 27 |
# File 'lib/kendama/models/announcement.rb', line 25 def process @process end |
#registrated_number ⇒ Object
登録番号
22 23 24 |
# File 'lib/kendama/models/announcement.rb', line 22 def registrated_number @registrated_number end |
#registration_date ⇒ Object
登録年月日
40 41 42 |
# File 'lib/kendama/models/announcement.rb', line 40 def registration_date @registration_date end |
#sequence_number ⇒ Object
一連番号
19 20 21 |
# File 'lib/kendama/models/announcement.rb', line 19 def sequence_number @sequence_number end |
#trade_name ⇒ Object
主たる屋号
85 86 87 |
# File 'lib/kendama/models/announcement.rb', line 85 def trade_name @trade_name end |
#update_date ⇒ Object
更新年月日
43 44 45 |
# File 'lib/kendama/models/announcement.rb', line 43 def update_date @update_date end |
Class Method Details
._deserialize(type, value) ⇒ Object
Deserializes the data based on type
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 |
# File 'lib/kendama/models/announcement.rb', line 762 def self._deserialize(type, value) case type.to_sym when :Time Time.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 # models (e.g. Pet) or oneOf klass = Kendama.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) end end |
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
143 144 145 |
# File 'lib/kendama/models/announcement.rb', line 143 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/kendama/models/announcement.rb', line 113 def self.attribute_map { :'sequence_number' => :'sequenceNumber', :'registrated_number' => :'registratedNumber', :'process' => :'process', :'correct' => :'correct', :'kind' => :'kind', :'country' => :'country', :'latest' => :'latest', :'registration_date' => :'registrationDate', :'update_date' => :'updateDate', :'disposal_date' => :'disposalDate', :'expire_date' => :'expireDate', :'address' => :'address', :'address_prefecture_code' => :'addressPrefectureCode', :'address_city_code' => :'addressCityCode', :'address_request' => :'addressRequest', :'address_request_prefecture_code' => :'addressRequestPrefectureCode', :'address_request_city_code' => :'addressRequestCityCode', :'kana' => :'kana', :'name' => :'name', :'address_inside' => :'addressInside', :'address_inside_prefecture_code' => :'addressInsidePrefectureCode', :'address_inside_city_code' => :'addressInsideCityCode', :'trade_name' => :'tradeName', :'popular_name_previous_name' => :'popularName_previousName' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 |
# File 'lib/kendama/models/announcement.rb', line 738 def self.build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) transformed_hash = {} openapi_types.each_pair do |key, type| if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = nil elsif 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[attribute_map[key]].is_a?(Array) transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) } end elsif !attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]]) end end new(transformed_hash) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
178 179 180 181 |
# File 'lib/kendama/models/announcement.rb', line 178 def self.openapi_nullable Set.new([ ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/kendama/models/announcement.rb', line 148 def self.openapi_types { :'sequence_number' => :'String', :'registrated_number' => :'String', :'process' => :'String', :'correct' => :'String', :'kind' => :'String', :'country' => :'String', :'latest' => :'String', :'registration_date' => :'Date', :'update_date' => :'Date', :'disposal_date' => :'String', :'expire_date' => :'String', :'address' => :'String', :'address_prefecture_code' => :'String', :'address_city_code' => :'String', :'address_request' => :'String', :'address_request_prefecture_code' => :'String', :'address_request_city_code' => :'String', :'kana' => :'String', :'name' => :'String', :'address_inside' => :'String', :'address_inside_prefecture_code' => :'String', :'address_inside_city_code' => :'String', :'trade_name' => :'String', :'popular_name_previous_name' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 |
# File 'lib/kendama/models/announcement.rb', line 694 def ==(o) return true if self.equal?(o) self.class == o.class && sequence_number == o.sequence_number && registrated_number == o.registrated_number && process == o.process && correct == o.correct && kind == o.kind && country == o.country && latest == o.latest && registration_date == o.registration_date && update_date == o.update_date && disposal_date == o.disposal_date && expire_date == o.expire_date && address == o.address && address_prefecture_code == o.address_prefecture_code && address_city_code == o.address_city_code && address_request == o.address_request && address_request_prefecture_code == o.address_request_prefecture_code && address_request_city_code == o.address_request_city_code && kana == o.kana && name == o.name && address_inside == o.address_inside && address_inside_prefecture_code == o.address_inside_prefecture_code && address_inside_city_code == o.address_inside_city_code && trade_name == o.trade_name && popular_name_previous_name == o.popular_name_previous_name end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
833 834 835 836 837 838 839 840 841 842 843 844 845 |
# File 'lib/kendama/models/announcement.rb', line 833 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 |
#eql?(o) ⇒ Boolean
725 726 727 |
# File 'lib/kendama/models/announcement.rb', line 725 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
731 732 733 |
# File 'lib/kendama/models/announcement.rb', line 731 def hash [sequence_number, registrated_number, process, correct, kind, country, latest, registration_date, update_date, disposal_date, expire_date, address, address_prefecture_code, address_city_code, address_request, address_request_prefecture_code, address_request_city_code, kana, name, address_inside, address_inside_prefecture_code, address_inside_city_code, trade_name, popular_name_previous_name].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 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 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
# File 'lib/kendama/models/announcement.rb', line 343 def list_invalid_properties warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' invalid_properties = Array.new if @sequence_number.nil? invalid_properties.push('invalid value for "sequence_number", sequence_number cannot be nil.') end if @sequence_number.to_s.length > 8 invalid_properties.push('invalid value for "sequence_number", the character length must be smaller than or equal to 8.') end if @sequence_number.to_s.length < 1 invalid_properties.push('invalid value for "sequence_number", the character length must be great than or equal to 1.') end if @registrated_number.nil? invalid_properties.push('invalid value for "registrated_number", registrated_number cannot be nil.') end if @process.nil? invalid_properties.push('invalid value for "process", process cannot be nil.') end if @correct.nil? invalid_properties.push('invalid value for "correct", correct cannot be nil.') end if @kind.nil? invalid_properties.push('invalid value for "kind", kind cannot be nil.') end if @country.nil? invalid_properties.push('invalid value for "country", country cannot be nil.') end if @latest.nil? invalid_properties.push('invalid value for "latest", latest cannot be nil.') end if @registration_date.nil? invalid_properties.push('invalid value for "registration_date", registration_date cannot be nil.') end if @update_date.nil? invalid_properties.push('invalid value for "update_date", update_date cannot be nil.') end if @disposal_date.nil? invalid_properties.push('invalid value for "disposal_date", disposal_date cannot be nil.') end if @expire_date.nil? invalid_properties.push('invalid value for "expire_date", expire_date cannot be nil.') end if @address.nil? invalid_properties.push('invalid value for "address", address cannot be nil.') end if @address.to_s.length > 600 invalid_properties.push('invalid value for "address", the character length must be smaller than or equal to 600.') end if @address_prefecture_code.nil? invalid_properties.push('invalid value for "address_prefecture_code", address_prefecture_code cannot be nil.') end if @address_city_code.nil? invalid_properties.push('invalid value for "address_city_code", address_city_code cannot be nil.') end if @address_request.nil? invalid_properties.push('invalid value for "address_request", address_request cannot be nil.') end if @address_request.to_s.length > 600 invalid_properties.push('invalid value for "address_request", the character length must be smaller than or equal to 600.') end if @address_request_prefecture_code.nil? invalid_properties.push('invalid value for "address_request_prefecture_code", address_request_prefecture_code cannot be nil.') end if @address_request_city_code.nil? invalid_properties.push('invalid value for "address_request_city_code", address_request_city_code cannot be nil.') end if @kana.nil? invalid_properties.push('invalid value for "kana", kana cannot be nil.') end if @kana.to_s.length > 500 invalid_properties.push('invalid value for "kana", the character length must be smaller than or equal to 500.') end if @name.nil? invalid_properties.push('invalid value for "name", name cannot be nil.') end if @name.to_s.length > 300 invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 300.') end if @address_inside.nil? invalid_properties.push('invalid value for "address_inside", address_inside cannot be nil.') end if @address_inside.to_s.length > 300 invalid_properties.push('invalid value for "address_inside", the character length must be smaller than or equal to 300.') end if @address_inside_city_code.nil? invalid_properties.push('invalid value for "address_inside_city_code", address_inside_city_code cannot be nil.') end if @trade_name.nil? invalid_properties.push('invalid value for "trade_name", trade_name cannot be nil.') end if @trade_name.to_s.length > 200 invalid_properties.push('invalid value for "trade_name", the character length must be smaller than or equal to 200.') end if @popular_name_previous_name.nil? invalid_properties.push('invalid value for "popular_name_previous_name", popular_name_previous_name cannot be nil.') end if @popular_name_previous_name.to_s.length > 200 invalid_properties.push('invalid value for "popular_name_previous_name", the character length must be smaller than or equal to 200.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
809 810 811 |
# File 'lib/kendama/models/announcement.rb', line 809 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
815 816 817 818 819 820 821 822 823 824 825 826 827 |
# File 'lib/kendama/models/announcement.rb', line 815 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
803 804 805 |
# File 'lib/kendama/models/announcement.rb', line 803 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
479 480 481 482 483 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 521 522 523 524 |
# File 'lib/kendama/models/announcement.rb', line 479 def valid? warn '[DEPRECATED] the `valid?` method is obsolete' return false if @sequence_number.nil? return false if @sequence_number.to_s.length > 8 return false if @sequence_number.to_s.length < 1 return false if @registrated_number.nil? return false if @process.nil? process_validator = EnumAttributeValidator.new('String', ["01", "02", "03", "04", "99"]) return false unless process_validator.valid?(@process) return false if @correct.nil? correct_validator = EnumAttributeValidator.new('String', ["0", "1", ""]) return false unless correct_validator.valid?(@correct) return false if @kind.nil? kind_validator = EnumAttributeValidator.new('String', ["1", "2"]) return false unless kind_validator.valid?(@kind) return false if @country.nil? country_validator = EnumAttributeValidator.new('String', ["1", "2", "3"]) return false unless country_validator.valid?(@country) return false if @latest.nil? latest_validator = EnumAttributeValidator.new('String', ["0", "1"]) return false unless latest_validator.valid?(@latest) return false if @registration_date.nil? return false if @update_date.nil? return false if @disposal_date.nil? return false if @expire_date.nil? return false if @address.nil? return false if @address.to_s.length > 600 return false if @address_prefecture_code.nil? return false if @address_city_code.nil? return false if @address_request.nil? return false if @address_request.to_s.length > 600 return false if @address_request_prefecture_code.nil? return false if @address_request_city_code.nil? return false if @kana.nil? return false if @kana.to_s.length > 500 return false if @name.nil? return false if @name.to_s.length > 300 return false if @address_inside.nil? return false if @address_inside.to_s.length > 300 return false if @address_inside_city_code.nil? return false if @trade_name.nil? return false if @trade_name.to_s.length > 200 return false if @popular_name_previous_name.nil? return false if @popular_name_previous_name.to_s.length > 200 true end |