Sha256: 078bd869e4992ca329b885042ebe458c14955503317368908001a752c43517df
Contents?: true
Size: 1.47 KB
Versions: 17
Compression:
Stored size: 1.47 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class TrackCustomerRequestBody < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # This is the unique identifier for the customer in the client's app. This is used to track the customer's journey. field :customer_id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('customerId') } } # Avatar of the customer in the client's app. field :customer_avatar, T.nilable(::String), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('customerAvatar') } } # Email of the customer in the client's app. field :customer_email, T.nilable(::String), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('customerEmail') } } # Name of the customer in the client's app. field :customer_name, T.nilable(::String), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('customerName') } } sig { params(customer_id: ::String, customer_avatar: T.nilable(::String), customer_email: T.nilable(::String), customer_name: T.nilable(::String)).void } def initialize(customer_id: nil, customer_avatar: nil, customer_email: nil, customer_name: nil) @customer_id = customer_id @customer_avatar = customer_avatar @customer_email = customer_email @customer_name = customer_name end end end end
Version data entries
17 entries across 17 versions & 1 rubygems