Class: Kickflow::FormFieldDetail
- Inherits:
-
Object
- Object
- Kickflow::FormFieldDetail
- Defined in:
- lib/kickflow/models/form_field_detail.rb
Overview
フォームフィールドの詳細
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#approver ⇒ Object
承認者が編集可能かどうか.
-
#author ⇒ Object
申請者が編集可能かどうか.
-
#climber_cloud_setting ⇒ Object
Returns the value of attribute climber_cloud_setting.
-
#code ⇒ Object
コード.
-
#decimal_digit ⇒ Object
小数の桁数.
-
#default_general_master_item ⇒ Object
Returns the value of attribute default_general_master_item.
-
#default_value ⇒ Object
初期値.
-
#delimited ⇒ Object
カンマ区切りで表示する場合true。 整数、数値、自動計算フィールド以外ではnullが入ります。.
-
#description ⇒ Object
説明文.
-
#external_api_setting ⇒ Object
Returns the value of attribute external_api_setting.
-
#field_type ⇒ Object
フィールドの型.
-
#formula ⇒ Object
計算式。 型がcalculationのときのみ値が入ります。.
-
#general_master ⇒ Object
Returns the value of attribute general_master.
-
#hidden ⇒ Object
隠しフィールドである場合true.
-
#id ⇒ Object
UUID.
-
#max_length ⇒ Object
最大文字数.
-
#max_value ⇒ Object
最大値.
-
#min_length ⇒ Object
最小文字数.
-
#min_value ⇒ Object
最小値.
-
#options ⇒ Object
選択肢のリスト。型がcheckboxまたはpull_downのときのみ値が入ります。.
-
#prefix ⇒ Object
単位(接頭辞).
-
#readonly_on_ui ⇒ Object
trueの時、申請者・承認者が画面上から値を入力することを禁止します。 ボタン(外部API連携)による代入や、REST API経由での入力はこのオプションの対象外です。.
-
#regexp_format ⇒ Object
正規表現フォーマット.
-
#required ⇒ Object
必須項目かどうか.
-
#size ⇒ Object
フォームサイズ。fullの場合全幅、halfの場合1/2になります。.
-
#suffix ⇒ Object
単位(接尾辞).
-
#title ⇒ 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_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3).
-
.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 = {}) ⇒ FormFieldDetail
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 = {}) ⇒ FormFieldDetail
Initializes the object
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 340 341 342 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 |
# File 'lib/kickflow/models/form_field_detail.rb', line 223 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `Kickflow::FormFieldDetail` 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 `Kickflow::FormFieldDetail`. 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?(:'id') self.id = attributes[:'id'] else self.id = nil end if attributes.key?(:'title') self.title = attributes[:'title'] else self.title = nil end if attributes.key?(:'description') self.description = attributes[:'description'] else self.description = nil end if attributes.key?(:'field_type') self.field_type = attributes[:'field_type'] else self.field_type = nil end if attributes.key?(:'required') self.required = attributes[:'required'] else self.required = nil end if attributes.key?(:'approver') self.approver = attributes[:'approver'] else self.approver = nil end if attributes.key?(:'author') self. = attributes[:'author'] end if attributes.key?(:'options') if (value = attributes[:'options']).is_a?(Array) self. = value end else self. = nil end if attributes.key?(:'code') self.code = attributes[:'code'] else self.code = nil end if attributes.key?(:'size') self.size = attributes[:'size'] else self.size = nil end if attributes.key?(:'regexp_format') self.regexp_format = attributes[:'regexp_format'] else self.regexp_format = nil end if attributes.key?(:'formula') self.formula = attributes[:'formula'] else self.formula = nil end if attributes.key?(:'default_value') self.default_value = attributes[:'default_value'] else self.default_value = nil end if attributes.key?(:'min_value') self.min_value = attributes[:'min_value'] else self.min_value = nil end if attributes.key?(:'max_value') self.max_value = attributes[:'max_value'] else self.max_value = nil end if attributes.key?(:'min_length') self.min_length = attributes[:'min_length'] else self.min_length = nil end if attributes.key?(:'max_length') self.max_length = attributes[:'max_length'] else self.max_length = nil end if attributes.key?(:'decimal_digit') self.decimal_digit = attributes[:'decimal_digit'] else self.decimal_digit = nil end if attributes.key?(:'delimited') self.delimited = attributes[:'delimited'] else self.delimited = nil end if attributes.key?(:'prefix') self.prefix = attributes[:'prefix'] else self.prefix = nil end if attributes.key?(:'suffix') self.suffix = attributes[:'suffix'] else self.suffix = nil end if attributes.key?(:'hidden') self.hidden = attributes[:'hidden'] end if attributes.key?(:'readonly_on_ui') self.readonly_on_ui = attributes[:'readonly_on_ui'] end if attributes.key?(:'general_master') self.general_master = attributes[:'general_master'] end if attributes.key?(:'default_general_master_item') self.default_general_master_item = attributes[:'default_general_master_item'] end if attributes.key?(:'external_api_setting') self.external_api_setting = attributes[:'external_api_setting'] end if attributes.key?(:'climber_cloud_setting') self.climber_cloud_setting = attributes[:'climber_cloud_setting'] end end |
Instance Attribute Details
#approver ⇒ Object
承認者が編集可能かどうか
35 36 37 |
# File 'lib/kickflow/models/form_field_detail.rb', line 35 def approver @approver end |
#author ⇒ Object
申請者が編集可能かどうか
38 39 40 |
# File 'lib/kickflow/models/form_field_detail.rb', line 38 def @author end |
#climber_cloud_setting ⇒ Object
Returns the value of attribute climber_cloud_setting.
94 95 96 |
# File 'lib/kickflow/models/form_field_detail.rb', line 94 def climber_cloud_setting @climber_cloud_setting end |
#code ⇒ Object
コード
44 45 46 |
# File 'lib/kickflow/models/form_field_detail.rb', line 44 def code @code end |
#decimal_digit ⇒ Object
小数の桁数
71 72 73 |
# File 'lib/kickflow/models/form_field_detail.rb', line 71 def decimal_digit @decimal_digit end |
#default_general_master_item ⇒ Object
Returns the value of attribute default_general_master_item.
90 91 92 |
# File 'lib/kickflow/models/form_field_detail.rb', line 90 def default_general_master_item @default_general_master_item end |
#default_value ⇒ Object
初期値
56 57 58 |
# File 'lib/kickflow/models/form_field_detail.rb', line 56 def default_value @default_value end |
#delimited ⇒ Object
カンマ区切りで表示する場合true。 整数、数値、自動計算フィールド以外ではnullが入ります。
74 75 76 |
# File 'lib/kickflow/models/form_field_detail.rb', line 74 def delimited @delimited end |
#description ⇒ Object
説明文
26 27 28 |
# File 'lib/kickflow/models/form_field_detail.rb', line 26 def description @description end |
#external_api_setting ⇒ Object
Returns the value of attribute external_api_setting.
92 93 94 |
# File 'lib/kickflow/models/form_field_detail.rb', line 92 def external_api_setting @external_api_setting end |
#field_type ⇒ Object
フィールドの型
29 30 31 |
# File 'lib/kickflow/models/form_field_detail.rb', line 29 def field_type @field_type end |
#formula ⇒ Object
計算式。 型がcalculationのときのみ値が入ります。
53 54 55 |
# File 'lib/kickflow/models/form_field_detail.rb', line 53 def formula @formula end |
#general_master ⇒ Object
Returns the value of attribute general_master.
88 89 90 |
# File 'lib/kickflow/models/form_field_detail.rb', line 88 def general_master @general_master end |
#hidden ⇒ Object
隠しフィールドである場合true
83 84 85 |
# File 'lib/kickflow/models/form_field_detail.rb', line 83 def hidden @hidden end |
#id ⇒ Object
UUID
20 21 22 |
# File 'lib/kickflow/models/form_field_detail.rb', line 20 def id @id end |
#max_length ⇒ Object
最大文字数
68 69 70 |
# File 'lib/kickflow/models/form_field_detail.rb', line 68 def max_length @max_length end |
#max_value ⇒ Object
最大値
62 63 64 |
# File 'lib/kickflow/models/form_field_detail.rb', line 62 def max_value @max_value end |
#min_length ⇒ Object
最小文字数
65 66 67 |
# File 'lib/kickflow/models/form_field_detail.rb', line 65 def min_length @min_length end |
#min_value ⇒ Object
最小値
59 60 61 |
# File 'lib/kickflow/models/form_field_detail.rb', line 59 def min_value @min_value end |
#options ⇒ Object
選択肢のリスト。型がcheckboxまたはpull_downのときのみ値が入ります。
41 42 43 |
# File 'lib/kickflow/models/form_field_detail.rb', line 41 def @options end |
#prefix ⇒ Object
単位(接頭辞)
77 78 79 |
# File 'lib/kickflow/models/form_field_detail.rb', line 77 def prefix @prefix end |
#readonly_on_ui ⇒ Object
trueの時、申請者・承認者が画面上から値を入力することを禁止します。 ボタン(外部API連携)による代入や、REST API経由での入力はこのオプションの対象外です。
86 87 88 |
# File 'lib/kickflow/models/form_field_detail.rb', line 86 def readonly_on_ui @readonly_on_ui end |
#regexp_format ⇒ Object
正規表現フォーマット
50 51 52 |
# File 'lib/kickflow/models/form_field_detail.rb', line 50 def regexp_format @regexp_format end |
#required ⇒ Object
必須項目かどうか
32 33 34 |
# File 'lib/kickflow/models/form_field_detail.rb', line 32 def required @required end |
#size ⇒ Object
フォームサイズ。fullの場合全幅、halfの場合1/2になります。
47 48 49 |
# File 'lib/kickflow/models/form_field_detail.rb', line 47 def size @size end |
#suffix ⇒ Object
単位(接尾辞)
80 81 82 |
# File 'lib/kickflow/models/form_field_detail.rb', line 80 def suffix @suffix end |
#title ⇒ Object
説明文
23 24 25 |
# File 'lib/kickflow/models/form_field_detail.rb', line 23 def title @title end |
Class Method Details
._deserialize(type, value) ⇒ Object
Deserializes the data based on type
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 |
# File 'lib/kickflow/models/form_field_detail.rb', line 617 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 = Kickflow.const_get(type) klass.respond_to?(:openapi_any_of) || 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
152 153 154 |
# File 'lib/kickflow/models/form_field_detail.rb', line 152 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/kickflow/models/form_field_detail.rb', line 119 def self.attribute_map { :'id' => :'id', :'title' => :'title', :'description' => :'description', :'field_type' => :'fieldType', :'required' => :'required', :'approver' => :'approver', :'author' => :'author', :'options' => :'options', :'code' => :'code', :'size' => :'size', :'regexp_format' => :'regexpFormat', :'formula' => :'formula', :'default_value' => :'defaultValue', :'min_value' => :'minValue', :'max_value' => :'maxValue', :'min_length' => :'minLength', :'max_length' => :'maxLength', :'decimal_digit' => :'decimalDigit', :'delimited' => :'delimited', :'prefix' => :'prefix', :'suffix' => :'suffix', :'hidden' => :'hidden', :'readonly_on_ui' => :'readonlyOnUi', :'general_master' => :'generalMaster', :'default_general_master_item' => :'defaultGeneralMasterItem', :'external_api_setting' => :'externalApiSetting', :'climber_cloud_setting' => :'climberCloudSetting' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 |
# File 'lib/kickflow/models/form_field_detail.rb', line 593 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_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3)
215 216 217 218 219 |
# File 'lib/kickflow/models/form_field_detail.rb', line 215 def self.openapi_all_of [ :'FormField' ] end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
# File 'lib/kickflow/models/form_field_detail.rb', line 190 def self.openapi_nullable Set.new([ :'description', :'options', :'regexp_format', :'formula', :'default_value', :'min_value', :'max_value', :'min_length', :'max_length', :'decimal_digit', :'delimited', :'prefix', :'suffix', :'hidden', :'readonly_on_ui', :'general_master', :'default_general_master_item', :'external_api_setting', :'climber_cloud_setting' ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/kickflow/models/form_field_detail.rb', line 157 def self.openapi_types { :'id' => :'String', :'title' => :'String', :'description' => :'String', :'field_type' => :'String', :'required' => :'Boolean', :'approver' => :'Boolean', :'author' => :'Boolean', :'options' => :'Array<String>', :'code' => :'String', :'size' => :'String', :'regexp_format' => :'String', :'formula' => :'String', :'default_value' => :'String', :'min_value' => :'Float', :'max_value' => :'Float', :'min_length' => :'Float', :'max_length' => :'Float', :'decimal_digit' => :'Integer', :'delimited' => :'Boolean', :'prefix' => :'String', :'suffix' => :'String', :'hidden' => :'Boolean', :'readonly_on_ui' => :'Boolean', :'general_master' => :'GeneralMaster', :'default_general_master_item' => :'GeneralMasterItem', :'external_api_setting' => :'ExternalApiSetting', :'climber_cloud_setting' => :'ClimberCloudSetting' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 |
# File 'lib/kickflow/models/form_field_detail.rb', line 546 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && title == o.title && description == o.description && field_type == o.field_type && required == o.required && approver == o.approver && == o. && == o. && code == o.code && size == o.size && regexp_format == o.regexp_format && formula == o.formula && default_value == o.default_value && min_value == o.min_value && max_value == o.max_value && min_length == o.min_length && max_length == o.max_length && decimal_digit == o.decimal_digit && delimited == o.delimited && prefix == o.prefix && suffix == o.suffix && hidden == o.hidden && readonly_on_ui == o.readonly_on_ui && general_master == o.general_master && default_general_master_item == o.default_general_master_item && external_api_setting == o.external_api_setting && climber_cloud_setting == o.climber_cloud_setting end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
688 689 690 691 692 693 694 695 696 697 698 699 700 |
# File 'lib/kickflow/models/form_field_detail.rb', line 688 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
580 581 582 |
# File 'lib/kickflow/models/form_field_detail.rb', line 580 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
586 587 588 |
# File 'lib/kickflow/models/form_field_detail.rb', line 586 def hash [id, title, description, field_type, required, approver, , , code, size, regexp_format, formula, default_value, min_value, max_value, min_length, max_length, decimal_digit, delimited, prefix, suffix, hidden, readonly_on_ui, general_master, default_general_master_item, external_api_setting, climber_cloud_setting].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
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 |
# File 'lib/kickflow/models/form_field_detail.rb', line 389 def list_invalid_properties warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' invalid_properties = Array.new if @id.nil? invalid_properties.push('invalid value for "id", id cannot be nil.') end if @title.nil? invalid_properties.push('invalid value for "title", title cannot be nil.') end if @title.to_s.length > 255 invalid_properties.push('invalid value for "title", the character length must be smaller than or equal to 255.') end if @field_type.nil? invalid_properties.push('invalid value for "field_type", field_type cannot be nil.') end if @required.nil? invalid_properties.push('invalid value for "required", required cannot be nil.') end if @approver.nil? invalid_properties.push('invalid value for "approver", approver cannot be nil.') end if @code.nil? invalid_properties.push('invalid value for "code", code cannot be nil.') end if @code.to_s.length > 255 invalid_properties.push('invalid value for "code", the character length must be smaller than or equal to 255.') end if @size.nil? invalid_properties.push('invalid value for "size", size cannot be nil.') end if @min_length < 0 invalid_properties.push('invalid value for "min_length", must be greater than or equal to 0.') end if @max_length < 0 invalid_properties.push('invalid value for "max_length", must be greater than or equal to 0.') end if @decimal_digit < 0 invalid_properties.push('invalid value for "decimal_digit", must be greater than or equal to 0.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
664 665 666 |
# File 'lib/kickflow/models/form_field_detail.rb', line 664 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
670 671 672 673 674 675 676 677 678 679 680 681 682 |
# File 'lib/kickflow/models/form_field_detail.rb', line 670 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
658 659 660 |
# File 'lib/kickflow/models/form_field_detail.rb', line 658 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 |
# File 'lib/kickflow/models/form_field_detail.rb', line 445 def valid? warn '[DEPRECATED] the `valid?` method is obsolete' return false if @id.nil? return false if @title.nil? return false if @title.to_s.length > 255 return false if @field_type.nil? field_type_validator = EnumAttributeValidator.new('String', ["text", "text_long", "number", "integer", "checkbox", "pull_down", "date", "file", "master", "user", "team", "ticket", "calculation", "button_api"]) return false unless field_type_validator.valid?(@field_type) return false if @required.nil? return false if @approver.nil? return false if @code.nil? return false if @code.to_s.length > 255 return false if @size.nil? size_validator = EnumAttributeValidator.new('String', ["full", "half"]) return false unless size_validator.valid?(@size) return false if @min_length < 0 return false if @max_length < 0 return false if @decimal_digit < 0 true end |