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