Sha256: 09c7d0cfc32e1cbde7c7e3e9ea89e0ba2a2614b1a0128fda0fb8619d02175a90
Contents?: true
Size: 1.16 KB
Versions: 23
Compression:
Stored size: 1.16 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class AtsGetRejectedReasonResponse < ::StackOne::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 # The rejected reason with the given identifier was retrieved. field :rejected_reason_result, T.nilable(::StackOne::Shared::RejectedReasonResult) sig { params(content_type: ::String, raw_response: ::Faraday::Response, status_code: ::Integer, rejected_reason_result: T.nilable(::StackOne::Shared::RejectedReasonResult)).void } def initialize(content_type: nil, raw_response: nil, status_code: nil, rejected_reason_result: nil) @content_type = content_type @raw_response = raw_response @status_code = status_code @rejected_reason_result = rejected_reason_result end end end end
Version data entries
23 entries across 23 versions & 1 rubygems