import type { PaymentMethodBrand } from './PaymentMethodBrand'; /** * * @export * @interface PaymentMethodBrandListResponse */ export interface PaymentMethodBrandListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof PaymentMethodBrandListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof PaymentMethodBrandListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof PaymentMethodBrandListResponse */ readonly limit?: number; } /** * Check if a given object implements the PaymentMethodBrandListResponse interface. */ export declare function instanceOfPaymentMethodBrandListResponse(value: object): value is PaymentMethodBrandListResponse; export declare function PaymentMethodBrandListResponseFromJSON(json: any): PaymentMethodBrandListResponse; export declare function PaymentMethodBrandListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentMethodBrandListResponse; export declare function PaymentMethodBrandListResponseToJSON(json: any): PaymentMethodBrandListResponse; export declare function PaymentMethodBrandListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;