Sha256: c862f2041adfccdc77e1d4f882fa447f05176ea747c641532f1ef769e3acd394
Contents?: true
Size: 1.47 KB
Versions: 43
Compression:
Stored size: 1.47 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). 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
43 entries across 43 versions & 1 rubygems