/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateAddressRequest } from './createAddressRequest'; /** Shipping data */ export interface CreateShippingRequest { /** Shipping amount */ amount: number; /** Description */ description: string; /** Recipient name */ recipientName: string; /** Recipient phone number */ recipientPhone: string; /** The id of the address that will be used for shipping */ addressId: string; /** Address data */ address: CreateAddressRequest; /** Data máxima de entrega */ maxDeliveryDate?: string; /** Prazo estimado de entrega */ estimatedDeliveryDate?: string; /** Shipping type */ type: string; } export declare const createShippingRequestSchema: Schema;