Sha256: 500725b9341e8ee1e93a961b2266fd870a8ee8ac26ce2a699c720a36fb552ada
Contents?: true
Size: 925 Bytes
Versions: 6
Compression:
Stored size: 925 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class CreateRequest < ::StackOne::Utils::FieldAugmented extend T::Sig field :id, ::Float, { 'path_param': { 'field_name': 'id', 'style': 'simple', 'explode': false } } field :request_body, T::Array[::StackOne::Shared::CreateEvent], { '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(id: ::Float, request_body: T::Array[::StackOne::Shared::CreateEvent], x_account_id: ::String).void } def initialize(id: nil, request_body: nil, x_account_id: nil) @id = id @request_body = request_body @x_account_id = x_account_id end end end end
Version data entries
6 entries across 6 versions & 1 rubygems