Sha256: 3c461306b3affbc7882a7d41ae898f790bab6c3dc7b35d0c0cf0edd6c7ac138c
Contents?: true
Size: 1022 Bytes
Versions: 2
Compression:
Stored size: 1022 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class ListMarketingautomationMessagesResponseBody < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig field :data, T::Array[::OpenApiSDK::Shared::UnifiedMarketingautomationMessageOutput], { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('data') } } field :next_cursor, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('next_cursor') } } field :prev_cursor, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('prev_cursor') } } sig { params(data: T::Array[::OpenApiSDK::Shared::UnifiedMarketingautomationMessageOutput], next_cursor: ::String, prev_cursor: ::String).void } def initialize(data: nil, next_cursor: nil, prev_cursor: nil) @data = data @next_cursor = next_cursor @prev_cursor = prev_cursor end end end end
Version data entries
2 entries across 2 versions & 1 rubygems