/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { DisputeCategory } from './disputeCategory.js'; import { SellerProtectionStatus } from './sellerProtectionStatus.js'; /** The level of protection offered as defined by [PayPal Seller Protection for Merchants](https://www.paypal.com/us/webapps/mpp/security/seller-protection). */ export interface SellerProtection { /** Indicates whether the transaction is eligible for seller protection. For information, see [PayPal Seller Protection for Merchants](https://www.paypal.com/us/webapps/mpp/security/seller-protection). */ status?: SellerProtectionStatus; /** An array of conditions that are covered for the transaction. */ disputeCategories?: DisputeCategory[]; } export declare const sellerProtectionSchema: Schema; //# sourceMappingURL=sellerProtection.d.ts.map