@herd/angular-client
Version:
Swagger generated client for @herd/angular-client
65 lines (64 loc) • 2.54 kB
TypeScript
/**
* 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.
*/
import { BusinessObjectDataStatus } from './businessObjectDataStatus';
import { PartitionValueFilter } from './partitionValueFilter';
export interface BusinessObjectDataAvailability {
/**
* The Namespace to which a Business Object Format is related
*/
namespace: string;
/**
* The name of the Business Object Definition to which a Business Object Format is related
*/
businessObjectDefinitionName: string;
/**
* The Usage of a Business Object Format - a string describing how this format is used. Often used as a label for the Business Object Format. Does not have to be unique in the system, the Usage string is frequently shared across formats for multiple Business Object Definitions
*/
businessObjectFormatUsage: string;
/**
* A File Type known to the system that describes the file type of data stored under a Business Object Format
*/
businessObjectFormatFileType: string;
/**
* The Business Object Format Version for a previously registered Business Object Format
*/
businessObjectFormatVersion?: number;
/**
* A container for Partition Value Filters
*/
partitionValueFilters?: Array<PartitionValueFilter>;
partitionValueFilter?: PartitionValueFilter;
/**
* The numeric version of a Business Object Data
*/
businessObjectDataVersion?: number;
/**
* A Business Object Data Status value specified in the request for available Business Object Data
*/
businessObjectDataStatus?: string;
/**
* A container for Storage Names to include when checking for Business Object Data availability
*/
storageNames?: Array<string>;
/**
* Name of an existing storage known to the System. Required when StorageName is present
*/
storageName?: string;
/**
* A container for the Business Object Data in this query that are considered available
*/
availableStatuses?: Array<BusinessObjectDataStatus>;
/**
* A container for the Business Object Data in this query that are not considered available
*/
notAvailableStatuses?: Array<BusinessObjectDataStatus>;
}