UNPKG

wallee

Version:
35 lines (34 loc) 1.55 kB
import type { PaymentMethodBrand } from './PaymentMethodBrand'; /** * * @export * @interface PaymentMethodBrandListResponse */ export interface PaymentMethodBrandListResponse { /** * An array containing the actual response objects. * @type {Array<PaymentMethodBrand>} * @memberof PaymentMethodBrandListResponse */ readonly data?: Array<PaymentMethodBrand>; /** * 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<PaymentMethodBrandListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;