/** * 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. */ /** * The response of a principal alias lookup request * @export * @interface PrincipalAliasResponse */ export interface PrincipalAliasResponse { /** * The ID of the principal to bind the alias too. * @type {number} * @memberof PrincipalAliasResponse */ principalId?: number; } /** * Check if a given object implements the PrincipalAliasResponse interface. */ export declare function instanceOfPrincipalAliasResponse(value: object): value is PrincipalAliasResponse; export declare function PrincipalAliasResponseFromJSON(json: any): PrincipalAliasResponse; export declare function PrincipalAliasResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PrincipalAliasResponse; export declare function PrincipalAliasResponseToJSON(json: any): PrincipalAliasResponse; export declare function PrincipalAliasResponseToJSONTyped(value?: PrincipalAliasResponse | null, ignoreDiscriminator?: boolean): any;