Interface CustomMetadata

User provided metadata stored as key-value pairs. This data type is not supported in Vertex AI.

interface CustomMetadata {
    key?: string;
    numericValue?: number;
    stringListValue?: StringList;
    stringValue?: string;
}

Properties

key?: string

Required. The key of the metadata to store.

numericValue?: number

The numeric value of the metadata to store.

stringListValue?: StringList

The StringList value of the metadata to store.

stringValue?: string

The string value of the metadata to store.