Latest generation

This commit is contained in:
ci core model
2025-10-03 07:40:44 +00:00
parent 9598e82401
commit ccc9203ddd
2 changed files with 9 additions and 1 deletions

View File

@@ -476,6 +476,8 @@ export interface EntityID {
*/
RefDate?: DateTime;
/**
* A free-form key/value map provided by the client. The API stores and returns these fields as-is. Intended solely for client use; the API does not interpret or validate the content.
*
* @generated from protobuf field: repeated api.CustomField CustomFields = 4
*/
CustomFields: CustomField[];
@@ -485,10 +487,14 @@ export interface EntityID {
*/
export interface CustomField {
/**
* Key of the custom field
*
* @generated from protobuf field: string Key = 1
*/
Key: string;
/**
* Value of the custom field
*
* @generated from protobuf field: string Value = 2
*/
Value: string;
@@ -506,6 +512,8 @@ export interface StockID {
*/
RefDate?: DateTime;
/**
* A free-form key/value map provided by the client. The API stores and returns these fields as-is. Intended solely for client use; the API does not interpret or validate the content.
*
* @generated from protobuf field: repeated api.CustomField CustomFields = 4
*/
CustomFields: CustomField[];