Sha256: 48289baa88617e3463c06f47c58cffbb92721a0802ce0166c78a7b10ee578f30
Contents?: true
Size: 961 Bytes
Versions: 1
Compression:
Stored size: 961 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared class ConditionType < ::StackOne::Utils::FieldAugmented extend T::Sig # The source value of the question's condition type field :source_value, T.nilable(::Object), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('source_value') } } # The type of the question's condition field :value, T.nilable(::StackOne::Shared::QuestionSchemasValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value'), 'decoder': Utils.enum_from_string(::StackOne::Shared::QuestionSchemasValue, true) } } sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::QuestionSchemasValue)).void } def initialize(source_value: nil, value: nil) @source_value = source_value @value = value end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stackone_client-0.4.0 | lib/stack_one/models/shared/condition_type.rb |