@veeroute/lss-agro-angular
Version:
OpenAPI client for @veeroute/lss-agro-angular
36 lines (35 loc) • 937 B
TypeScript
/**
* VRt.Agro [AG]
*
* The version of the OpenAPI document: 7.18.2755
* Contact: servicedesk@veeroute.com
*
* NOTE: This class is auto generated by OpenAPI Generator.
* Do not edit the class manually.
*/
import { ContractTypeAgro } from './contractType';
import { PricelistAgro } from './pricelist';
import { AttributeAgro } from './attribute';
/**
* Contract - defines a list of purchase and sale prices for a specific group of sellers and buyers.
*/
export interface ContractAgro {
[key: string]: any | any;
/**
* Key, unique identifier.
*/
key: string;
type: ContractTypeAgro;
/**
* List of production object keys.
*/
target_keys: Array<string>;
/**
* List of prices for the purchase and sale of agricultural crops.
*/
pricelist: Array<PricelistAgro>;
/**
* Attributes. Used to add service information.
*/
attributes?: Array<AttributeAgro>;
}