/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface StoreCreditListResource */ export interface StoreCreditListResource { /** * * @type {number} * @memberof StoreCreditListResource */ id: number; /** * * @type {number} * @memberof StoreCreditListResource */ siteId: number; /** * * @type {number} * @memberof StoreCreditListResource */ customerId?: number | null; /** * * @type {string} * @memberof StoreCreditListResource */ customerNetsuiteId: string; /** * * @type {string} * @memberof StoreCreditListResource */ code: string; /** * * @type {Date} * @memberof StoreCreditListResource */ expiryDate?: Date | null; /** * * @type {number} * @memberof StoreCreditListResource */ originalAmount: number; /** * * @type {number} * @memberof StoreCreditListResource */ amountRemaining: number; /** * * @type {string} * @memberof StoreCreditListResource */ netsuiteId?: string | null; /** * * @type {Date} * @memberof StoreCreditListResource */ createdAt?: Date | null; } /** * Check if a given object implements the StoreCreditListResource interface. */ export declare function instanceOfStoreCreditListResource(value: object): value is StoreCreditListResource; export declare function StoreCreditListResourceFromJSON(json: any): StoreCreditListResource; export declare function StoreCreditListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreCreditListResource; export declare function StoreCreditListResourceToJSON(json: any): StoreCreditListResource; export declare function StoreCreditListResourceToJSONTyped(value?: StoreCreditListResource | null, ignoreDiscriminator?: boolean): any;