Sha256: 1017f4701b3d6ae1e1032d934af44f9d8286bf633268867de60e8917f9ea205b
Contents?: true
Size: 1.17 KB
Versions: 36
Compression:
Stored size: 1.17 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Shared class InternalServerErrorError < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # A short code indicating the error code returned. field :code, ::OpenApiSDK::Shared::InternalServerErrorCode, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('code'), 'decoder': Utils.enum_from_string(::OpenApiSDK::Shared::InternalServerErrorCode, false) } } # A human readable explanation of what went wrong. field :message, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('message') } } # A link to our documentation with more details about this error code field :doc_url, T.nilable(::String), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('doc_url') } } sig { params(code: ::OpenApiSDK::Shared::InternalServerErrorCode, message: ::String, doc_url: T.nilable(::String)).void } def initialize(code: nil, message: nil, doc_url: nil) @code = code @message = message @doc_url = doc_url end end end end
Version data entries
36 entries across 36 versions & 1 rubygems