/** * 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. */ import type { CustomerSocialLinkableResource } from './CustomerSocialLinkableResource'; /** * * @export * @interface CustomerSocialLinkableResourceArrayResponse */ export interface CustomerSocialLinkableResourceArrayResponse { /** * * @type {Array} * @memberof CustomerSocialLinkableResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the CustomerSocialLinkableResourceArrayResponse interface. */ export declare function instanceOfCustomerSocialLinkableResourceArrayResponse(value: object): value is CustomerSocialLinkableResourceArrayResponse; export declare function CustomerSocialLinkableResourceArrayResponseFromJSON(json: any): CustomerSocialLinkableResourceArrayResponse; export declare function CustomerSocialLinkableResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerSocialLinkableResourceArrayResponse; export declare function CustomerSocialLinkableResourceArrayResponseToJSON(json: any): CustomerSocialLinkableResourceArrayResponse; export declare function CustomerSocialLinkableResourceArrayResponseToJSONTyped(value?: CustomerSocialLinkableResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;