regenerated with newest spec, reconfigured actions and adding publishing

This commit is contained in:
Luke Hagar
2024-09-16 15:42:38 +00:00
parent fa4cfa3643
commit b689f4fe66
1660 changed files with 29288 additions and 15630 deletions

View File

@@ -0,0 +1,27 @@
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module PlexRubySDK
module Operations
class GetFileHashRequest < ::PlexRubySDK::Utils::FieldAugmented
extend T::Sig
# This is the path to the local file, must be prefixed by `file://`
field :url, ::String, { 'query_param': { 'field_name': 'url', 'style': 'form', 'explode': true } }
# Item type
field :type, T.nilable(::Float), { 'query_param': { 'field_name': 'type', 'style': 'form', 'explode': true } }
sig { params(url: ::String, type: T.nilable(::Float)).void }
def initialize(url: nil, type: nil)
@url = url
@type = type
end
end
end
end