Sha256: 60f679c847291bbf9a0b13caf6d3b2d1f44631c520f5f2998a0ff60ef88c641b
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Shared # An UnboundedRequest represents the HAR content capture by Speakeasy when logging a request. class UnboundedRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # Creation timestamp. field :created_at, ::DateTime, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('created_at'), 'decoder': Utils.datetime_from_iso_format(false) } } # The HAR content of the request. field :har, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('har') } } # The size of the HAR content in bytes. field :har_size_bytes, ::Integer, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('har_size_bytes') } } # The ID of this request. field :request_id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('request_id') } } # The workspace ID this request was made to. field :workspace_id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('workspace_id') } } sig { params(created_at: ::DateTime, har: ::String, har_size_bytes: ::Integer, request_id: ::String, workspace_id: ::String).void } def initialize(created_at: nil, har: nil, har_size_bytes: nil, request_id: nil, workspace_id: nil) @created_at = created_at @har = har @har_size_bytes = har_size_bytes @request_id = request_id @workspace_id = workspace_id end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
speakeasy_client_sdk_ruby-4.2.24 | lib/open_api_sdk/models/shared/unboundedrequest.rb |