Sha256: 7a2eb897d6fc20a0cba3809219481bc97104de5e84d23d6f8e7b8e5a256455e6
Contents?: true
Size: 964 Bytes
Versions: 14
Compression:
Stored size: 964 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared # Stackone enum identifying the type of message associated with the content. class MessageMessageType < ::StackOne::Utils::FieldAugmented extend T::Sig # The original value from the provider used to derive the unified message type. field :source_value, T.nilable(::Object), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('source_value') } } # The unified message type. field :value, T.nilable(::StackOne::Shared::MessageValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value') } } sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::MessageValue)).void } def initialize(source_value: nil, value: nil) @source_value = source_value @value = value end end end end
Version data entries
14 entries across 14 versions & 1 rubygems