/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CaptureStatus } from './captureStatus.js'; import { CaptureStatusDetails } from './captureStatusDetails.js'; /** The status and status details of a captured payment. */ export interface CaptureStatusWithDetails { /** The status of the captured payment. */ status?: CaptureStatus; /** The details of the captured payment status. */ statusDetails?: CaptureStatusDetails; } export declare const captureStatusWithDetailsSchema: Schema; //# sourceMappingURL=captureStatusWithDetails.d.ts.map