/** * 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 ValidateSuburbRequest */ export interface ValidateSuburbRequest { /** * * @type {number} * @memberof ValidateSuburbRequest */ siteId: number; /** * * @type {string} * @memberof ValidateSuburbRequest */ suburb: string; /** * * @type {string} * @memberof ValidateSuburbRequest */ state: string; /** * * @type {string} * @memberof ValidateSuburbRequest */ postcode: string; } /** * Check if a given object implements the ValidateSuburbRequest interface. */ export declare function instanceOfValidateSuburbRequest(value: object): value is ValidateSuburbRequest; export declare function ValidateSuburbRequestFromJSON(json: any): ValidateSuburbRequest; export declare function ValidateSuburbRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateSuburbRequest; export declare function ValidateSuburbRequestToJSON(json: any): ValidateSuburbRequest; export declare function ValidateSuburbRequestToJSONTyped(value?: ValidateSuburbRequest | null, ignoreDiscriminator?: boolean): any;