UNPKG

@herd/angular-client

Version:

Swagger generated client for @herd/angular-client

54 lines (53 loc) 1.41 kB
/** * herd * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 0.220.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. */ export interface BusinessObjectDataStorageFileKey { /** * The namespace of the business object definition */ namespace: string; /** * The business object definition name */ businessObjectDefinitionName: string; /** * The format usage of the business object data */ businessObjectFormatUsage: string; /** * The format file type of the business object data */ businessObjectFormatFileType: string; /** * The format version of the business object data */ businessObjectFormatVersion?: number; /** * The the primary partition value of the business object data */ partitionValue: string; /** * The subpartition values of the business object data */ subPartitionValues?: Array<string>; /** * The version of the business object data */ businessObjectDataVersion?: number; /** * The name of the storage */ storageName: string; /** * The fully qualified file path to the data */ filePath: string; }