/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 ClientSidePathEndpointRequest */ export interface ClientSidePathEndpointRequest { /** * * @type {string} * @memberof ClientSidePathEndpointRequest */ serverSidePath: string; /** * * @type {string} * @memberof ClientSidePathEndpointRequest */ platform?: string | null; } export declare function ClientSidePathEndpointRequestFromJSON(json: any): ClientSidePathEndpointRequest; export declare function ClientSidePathEndpointRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientSidePathEndpointRequest; export declare function ClientSidePathEndpointRequestToJSON(value?: ClientSidePathEndpointRequest | null): any;