Sha256: 3ada5e92806c55e4e28ad03a8166a4e9cfad11c4bc2011c167de1a20c577bf60
Contents?: true
Size: 1.17 KB
Versions: 12
Compression:
Stored size: 1.17 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared class MarketingCreateContentBlocksRequestDto < ::StackOne::Utils::FieldAugmented extend T::Sig field :content, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('content') } } field :name, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('name') } } # Value to pass through to the provider field :passthrough, T.nilable(T::Hash[Symbol, ::Object]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('passthrough') } } field :tags, T.nilable(T::Array[::String]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('tags') } } sig { params(content: T.nilable(::String), name: T.nilable(::String), passthrough: T.nilable(T::Hash[Symbol, ::Object]), tags: T.nilable(T::Array[::String])).void } def initialize(content: nil, name: nil, passthrough: nil, tags: nil) @content = content @name = name @passthrough = passthrough @tags = tags end end end end
Version data entries
12 entries across 12 versions & 1 rubygems