Sha256: d07eb28444110e45a0a0888b0ede64f6a01c52643260ac42eccc2ebcb899a881
Contents?: true
Size: 746 Bytes
Versions: 7
Compression:
Stored size: 746 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Shared class ValueChange < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # Represents the previous value of the element. field :from, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('From') } } # Represents the current value of the element. field :to, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('To') } } sig { params(from: ::String, to: ::String).void } def initialize(from: nil, to: nil) @from = from @to = to end end end end
Version data entries
7 entries across 7 versions & 1 rubygems