Files
plexruby/lib/open_api_sdk/models/operations/getmetadatachildren_request.rb

25 lines
585 B
Ruby

# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module OpenApiSDK
module Operations
class GetMetadataChildrenRequest < ::OpenApiSDK::Utils::FieldAugmented
extend T::Sig
# the id of the library item to return the children of.
field :rating_key, ::Float, { 'path_param': { 'field_name': 'ratingKey', 'style': 'simple', 'explode': false } }
sig { params(rating_key: ::Float).void }
def initialize(rating_key: nil)
@rating_key = rating_key
end
end
end
end