Sha256: 07ff94158a2c68f3c1c9702207a5088f7012ab824bbc8655064a665205a71350
Contents?: true
Size: 749 Bytes
Versions: 40
Compression:
Stored size: 749 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). 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
40 entries across 40 versions & 1 rubygems