UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

39 lines (38 loc) 1.09 kB
/** * Platform * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * PartETag * @export * @interface PartETag */ export interface PartETag { /** * * @type {string} * @memberof PartETag */ etag?: string; /** * * @type {number} * @memberof PartETag */ partNumber?: number; } /** * Check if a given object implements the PartETag interface. */ export declare function instanceOfPartETag(value: object): value is PartETag; export declare function PartETagFromJSON(json: any): PartETag; export declare function PartETagFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartETag; export declare function PartETagToJSON(json: any): PartETag; export declare function PartETagToJSONTyped(value?: PartETag | null, ignoreDiscriminator?: boolean): any;