Sha256: b9b003b07fa8e99119e4df609a87553b7edbece3dd772371a9f52e813bc5a36c
Contents?: true
Size: 1.08 KB
Versions: 16
Compression:
Stored size: 1.08 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class MarketingUpdateOmniChannelTemplateRequest < ::StackOne::Utils::FieldAugmented extend T::Sig field :id, ::String, { 'path_param': { 'field_name': 'id', 'style': 'simple', 'explode': false } } field :marketing_create_template_request_dto, ::StackOne::Shared::MarketingCreateTemplateRequestDto, { '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: ::String, marketing_create_template_request_dto: ::StackOne::Shared::MarketingCreateTemplateRequestDto, x_account_id: ::String).void } def initialize(id: nil, marketing_create_template_request_dto: nil, x_account_id: nil) @id = id @marketing_create_template_request_dto = marketing_create_template_request_dto @x_account_id = x_account_id end end end end
Version data entries
16 entries across 16 versions & 1 rubygems