@herd/angular-client
Version:
Swagger generated client for @herd/angular-client
38 lines (37 loc) • 1.39 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.
*/
export interface CustomDdlKey {
/**
* 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 this 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 numeric version of a Business Object Format
*/
businessObjectFormatVersion?: number;
/**
* A user-defined descriptive name for this Custom DDL
*/
customDdlName: string;
}