/** * 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 CustomerSocialLinkableResource */ export interface CustomerSocialLinkableResource { /** * * @type {boolean} * @memberof CustomerSocialLinkableResource */ linkable: boolean; /** * * @type {object} * @memberof CustomerSocialLinkableResource */ customer: object; } /** * Check if a given object implements the CustomerSocialLinkableResource interface. */ export declare function instanceOfCustomerSocialLinkableResource(value: object): value is CustomerSocialLinkableResource; export declare function CustomerSocialLinkableResourceFromJSON(json: any): CustomerSocialLinkableResource; export declare function CustomerSocialLinkableResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerSocialLinkableResource; export declare function CustomerSocialLinkableResourceToJSON(json: any): CustomerSocialLinkableResource; export declare function CustomerSocialLinkableResourceToJSONTyped(value?: CustomerSocialLinkableResource | null, ignoreDiscriminator?: boolean): any;