/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { UserObjectAsResponse } from "../definitions/UserObjectAsResponse"; export interface CurrentUserResponseAsResponse { user?: UserObjectAsResponse & { /** * CSRF token required by some Zendesk APIs. */ authenticity_token?: string; }; } //# sourceMappingURL=CurrentUserResponseAsResponse.d.ts.map