Sha256: 78ce21ff3ac745274d1b208f271fa1f1f31e62972f2716868610c3ef1bfab373
Contents?: true
Size: 1.57 KB
Versions: 2
Compression:
Stored size: 1.57 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class MarketingGetCampaignRequest < ::StackOne::Utils::FieldAugmented extend T::Sig field :id, ::String, { 'path_param': { 'field_name': 'id', 'style': 'simple', 'explode': false } } # The account identifier field :x_account_id, ::String, { 'header': { 'field_name': 'x-account-id', 'style': 'simple', 'explode': false } } # The comma separated list of fields that will be returned in the response (if empty, all fields are returned) field :fields_, T.nilable(::String), { 'query_param': { 'field_name': 'fields', 'style': 'form', 'explode': true } } # Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with 'proxy' key field :proxy, T.nilable(T::Hash[Symbol, ::Object]), { 'query_param': { 'field_name': 'proxy', 'style': 'form', 'explode': true } } # Indicates that the raw request result is returned field :raw, T.nilable(T::Boolean), { 'query_param': { 'field_name': 'raw', 'style': 'form', 'explode': true } } sig { params(id: ::String, x_account_id: ::String, fields_: T.nilable(::String), proxy: T.nilable(T::Hash[Symbol, ::Object]), raw: T.nilable(T::Boolean)).void } def initialize(id: nil, x_account_id: nil, fields_: nil, proxy: nil, raw: nil) @id = id @x_account_id = x_account_id @fields_ = fields_ @proxy = proxy @raw = raw end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stackone_client-0.2.13 | lib/stack_one/models/operations/marketing_get_campaign_request.rb |
stackone_client-0.2.12 | lib/stack_one/models/operations/marketing_get_campaign_request.rb |