Sha256: 56ede3f86c617f641a222c0c4e2e8d695f5d78bb012bd9d43f66200446282418
Contents?: true
Size: 714 Bytes
Versions: 1
Compression:
Stored size: 714 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Shared class ValueChange < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # Represents the previous value of the element. field :from, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('From') } } # Represents the current value of the element. field :to, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
speakeasy_client_sdk_ruby-4.2.24 | lib/open_api_sdk/models/shared/valuechange.rb |