/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * 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 time tracking provider. * @export * @interface TimeTrackingProvider */ export interface TimeTrackingProvider { /** * The key for the time tracking provider. For example, *JIRA*. * @type {string} * @memberof TimeTrackingProvider */ key: string; /** * The name of the time tracking provider. For example, *JIRA provided time tracking*. * @type {string} * @memberof TimeTrackingProvider */ name?: string; /** * The URL of the configuration page for the time tracking provider app. For example, *_/example/config/url*. This property is only returned if the `adminPageKey` property is set in the module descriptor of the time tracking provider app. * @type {string} * @memberof TimeTrackingProvider */ readonly url?: string; } export declare function TimeTrackingProviderFromJSON(json: any): TimeTrackingProvider; export declare function TimeTrackingProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeTrackingProvider; export declare function TimeTrackingProviderToJSON(value?: TimeTrackingProvider): any;