/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Response object for getting an order item */ export interface GetOrderItemResponse { /** Id */ id?: string | null; type?: string | null; description?: string | null; amount?: number | null; quantity?: number | null; /** Category */ category?: string | null; /** Code */ code?: string | null; status?: string | null; createdAt?: string | null; updatedAt?: string | null; } export declare const getOrderItemResponseSchema: Schema;