wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.61 kB
TypeScript
import type { RestCustomerEmailAddress } from './RestCustomerEmailAddress';
/**
*
* @export
* @interface CustomerEmailAddressListResponse
*/
export interface CustomerEmailAddressListResponse {
/**
* An array containing the actual response objects.
* @type {Array<RestCustomerEmailAddress>}
* @memberof CustomerEmailAddressListResponse
*/
readonly data?: Array<RestCustomerEmailAddress>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof CustomerEmailAddressListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof CustomerEmailAddressListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the CustomerEmailAddressListResponse interface.
*/
export declare function instanceOfCustomerEmailAddressListResponse(value: object): value is CustomerEmailAddressListResponse;
export declare function CustomerEmailAddressListResponseFromJSON(json: any): CustomerEmailAddressListResponse;
export declare function CustomerEmailAddressListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerEmailAddressListResponse;
export declare function CustomerEmailAddressListResponseToJSON(json: any): CustomerEmailAddressListResponse;
export declare function CustomerEmailAddressListResponseToJSONTyped(value?: Omit<CustomerEmailAddressListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;