Class: MethodRuby::Models::Entities::VerificationSessionUpdateParams::Kba::Answer
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- MethodRuby::Models::Entities::VerificationSessionUpdateParams::Kba::Answer
- Defined in:
- lib/method_ruby/models/entities/verification_session_update_params.rb
Instance Attribute Summary collapse
-
#answer_id ⇒ String
The selected answer identifier.
-
#question_id ⇒ String
The question identifier.
Instance Method Summary collapse
-
#initialize(answers: nil) ⇒ Object
constructor
KBA verification data.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(answers: nil) ⇒ Object
KBA verification data.
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/method_ruby/models/entities/verification_session_update_params.rb', line 123 class Answer < MethodRuby::Internal::Type::BaseModel # @!attribute answer_id # The selected answer identifier. # # @return [String] required :answer_id, String # @!attribute question_id # The question identifier. # # @return [String] required :question_id, String # @!method initialize(answer_id:, question_id:) # @param answer_id [String] The selected answer identifier. # # @param question_id [String] The question identifier. end |
Instance Attribute Details
#answer_id ⇒ String
The selected answer identifier.
128 |
# File 'lib/method_ruby/models/entities/verification_session_update_params.rb', line 128 required :answer_id, String |
#question_id ⇒ String
The question identifier.
134 |
# File 'lib/method_ruby/models/entities/verification_session_update_params.rb', line 134 required :question_id, String |