Sha256: 8fde3e829bd70db6d47ea960d9f11c997d1634b448def0183100800f553239a5
Contents?: true
Size: 1.36 KB
Versions: 5
Compression:
Stored size: 1.36 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class GetDeploymentResponse < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # HTTP response content type for this operation field :content_type, ::String # Raw HTTP response; suitable for custom response parsing field :raw_response, ::Faraday::Response # HTTP response status code for this operation field :status_code, ::Integer # error field :object, T.nilable(::OpenApiSDK::Operations::GetDeploymentResponseBody) # Display all production workflows field :response_bodies, T.nilable(T::Array[::OpenApiSDK::Operations::GetDeploymentComfyuiResponseBody]) sig { params(content_type: ::String, raw_response: ::Faraday::Response, status_code: ::Integer, object: T.nilable(::OpenApiSDK::Operations::GetDeploymentResponseBody), response_bodies: T.nilable(T::Array[::OpenApiSDK::Operations::GetDeploymentComfyuiResponseBody])).void } def initialize(content_type: nil, raw_response: nil, status_code: nil, object: nil, response_bodies: nil) @content_type = content_type @raw_response = raw_response @status_code = status_code @object = object @response_bodies = response_bodies end end end end
Version data entries
5 entries across 5 versions & 1 rubygems