wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.75 kB
TypeScript
import type { PaymentMethodBrand } from './PaymentMethodBrand';
/**
*
* @export
* @interface PaymentMethodBrandSearchResponse
*/
export interface PaymentMethodBrandSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<PaymentMethodBrand>}
* @memberof PaymentMethodBrandSearchResponse
*/
readonly data?: Array<PaymentMethodBrand>;
/**
* 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<PaymentMethodBrandSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;