/** * 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 SuburbValidationResource */ export interface SuburbValidationResource { /** * * @type {boolean} * @memberof SuburbValidationResource */ found: boolean; } /** * Check if a given object implements the SuburbValidationResource interface. */ export declare function instanceOfSuburbValidationResource(value: object): value is SuburbValidationResource; export declare function SuburbValidationResourceFromJSON(json: any): SuburbValidationResource; export declare function SuburbValidationResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SuburbValidationResource; export declare function SuburbValidationResourceToJSON(json: any): SuburbValidationResource; export declare function SuburbValidationResourceToJSONTyped(value?: SuburbValidationResource | null, ignoreDiscriminator?: boolean): any;