Files
plexruby/lib/plex_ruby_sdk/models/operations/guids.rb

25 lines
478 B
Ruby

# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module PlexRubySDK
module Operations
class Guids < ::PlexRubySDK::Utils::FieldAugmented
extend T::Sig
# The GUID value.
field :id, ::String, { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('id') } }
sig { params(id: ::String).void }
def initialize(id: nil)
@id = id
end
end
end
end