/** * 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 ExternalApiLogListResource */ export interface ExternalApiLogListResource { /** * * @type {number} * @memberof ExternalApiLogListResource */ id: number; /** * * @type {string} * @memberof ExternalApiLogListResource */ provider: string; /** * * @type {string} * @memberof ExternalApiLogListResource */ endpoint: string; /** * * @type {string} * @memberof ExternalApiLogListResource */ statusCode?: string | null; /** * * @type {Date} * @memberof ExternalApiLogListResource */ createdAt?: Date | null; } /** * Check if a given object implements the ExternalApiLogListResource interface. */ export declare function instanceOfExternalApiLogListResource(value: object): value is ExternalApiLogListResource; export declare function ExternalApiLogListResourceFromJSON(json: any): ExternalApiLogListResource; export declare function ExternalApiLogListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExternalApiLogListResource; export declare function ExternalApiLogListResourceToJSON(json: any): ExternalApiLogListResource; export declare function ExternalApiLogListResourceToJSONTyped(value?: ExternalApiLogListResource | null, ignoreDiscriminator?: boolean): any;