mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 20:57:45 +00:00
25 lines
585 B
Ruby
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
|