# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class StackoneProxyRequestRequest < ::StackOne::Utils::FieldAugmented extend T::Sig # The request body field :proxy_request_body, ::StackOne::Shared::ProxyRequestBody, { 'request': { 'media_type': 'application/json' } } # The account identifier field :x_account_id, ::String, { 'header': { 'field_name': 'x-account-id', 'style': 'simple', 'explode': false } } sig { params(proxy_request_body: ::StackOne::Shared::ProxyRequestBody, x_account_id: ::String).void } def initialize(proxy_request_body: nil, x_account_id: nil) @proxy_request_body = proxy_request_body @x_account_id = x_account_id end end end end