/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * List of principal aliases * @export * @interface AliasList */ export interface AliasList { /** * * @type {Array} * @memberof AliasList */ list?: Array; } /** * Check if a given object implements the AliasList interface. */ export declare function instanceOfAliasList(value: object): value is AliasList; export declare function AliasListFromJSON(json: any): AliasList; export declare function AliasListFromJSONTyped(json: any, ignoreDiscriminator: boolean): AliasList; export declare function AliasListToJSON(json: any): AliasList; export declare function AliasListToJSONTyped(value?: AliasList | null, ignoreDiscriminator?: boolean): any;