/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Request for creating an order item */ export interface CreateOrderItemRequest { /** Amount */ amount: number; /** Description */ description: string; /** Quantity */ quantity: number; /** Category */ category: string; /** The item code passed by the client */ code?: string; } export declare const createOrderItemRequestSchema: Schema;