/**
 * Service Desk Public REST API
 * Public REST API for Jira Service Desk
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Details about the operations available in this version.
 * @export
 * @interface SimpleLink
 */
export interface SimpleLink {
    /**
     *
     * @type {string}
     * @memberof SimpleLink
     */
    id?: string;
    /**
     *
     * @type {string}
     * @memberof SimpleLink
     */
    styleClass?: string;
    /**
     *
     * @type {string}
     * @memberof SimpleLink
     */
    iconClass?: string;
    /**
     *
     * @type {string}
     * @memberof SimpleLink
     */
    label?: string;
    /**
     *
     * @type {string}
     * @memberof SimpleLink
     */
    title?: string;
    /**
     *
     * @type {string}
     * @memberof SimpleLink
     */
    href?: string;
    /**
     *
     * @type {number}
     * @memberof SimpleLink
     */
    weight?: number;
}
export declare function SimpleLinkFromJSON(json: any): SimpleLink;
export declare function SimpleLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimpleLink;
export declare function SimpleLinkToJSON(value?: SimpleLink): any;
