/** * 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 DRS package information follows GA4GH specification. * @export * @interface PackageInformation */ export interface PackageInformation { /** * The group information of DRS, eg GA4GH. * @type {string} * @memberof PackageInformation */ group?: string; /** * The artifact information of DRS. * @type {string} * @memberof PackageInformation */ artifact?: string; /** * The version of DRS specification. * @type {string} * @memberof PackageInformation */ version?: string; } /** * Check if a given object implements the PackageInformation interface. */ export declare function instanceOfPackageInformation(value: object): value is PackageInformation; export declare function PackageInformationFromJSON(json: any): PackageInformation; export declare function PackageInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PackageInformation; export declare function PackageInformationToJSON(json: any): PackageInformation; export declare function PackageInformationToJSONTyped(value?: PackageInformation | null, ignoreDiscriminator?: boolean): any;