/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetAddressResponse } from './getAddressResponse'; /** Response object for getting the shipping data */ export interface GetShippingResponse { amount?: number | null; description?: string | null; recipientName?: string | null; recipientPhone?: string | null; address?: GetAddressResponse | null; /** Data máxima de entrega */ maxDeliveryDate?: string | null; /** Prazo estimado de entrega */ estimatedDeliveryDate?: string | null; /** Shipping Type */ type?: string | null; } export declare const getShippingResponseSchema: Schema;