/** * 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 SlackUser */ export interface SlackUser { /** * * @type {string} * @memberof SlackUser */ id: string; /** * * @type {string} * @memberof SlackUser */ name: string; } export declare function SlackUserFromJSON(json: any): SlackUser; export declare function SlackUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): SlackUser; export declare function SlackUserToJSON(value?: SlackUser | null): any;