Sha256: 695e8aebaa86d23ee3f26e3d2c86bb3d1f19278459aa22cca53da743482ed4ea
Contents?: true
Size: 906 Bytes
Versions: 12
Compression:
Stored size: 906 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class GetCustomerRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The unique identifier of the customer in Dub. field :id, ::String, { 'path_param': { 'field_name': 'id', 'style': 'simple', 'explode': false } } # Whether to include expanded fields on the customer (`link`, `partner`, `discount`). field :include_expanded_fields, T.nilable(T::Boolean), { 'query_param': { 'field_name': 'includeExpandedFields', 'style': 'form', 'explode': true } } sig { params(id: ::String, include_expanded_fields: T.nilable(T::Boolean)).void } def initialize(id: nil, include_expanded_fields: nil) @id = id @include_expanded_fields = include_expanded_fields end end end end
Version data entries
12 entries across 12 versions & 1 rubygems