Result of a saving operation.

interface SaveResult {
    errors?: (string | {})[];
    modelArtifactsInfo: ModelArtifactsInfo;
    responses?: Response[];
}

Properties

errors?: (string | {})[]

Error messages and related data (if any).

modelArtifactsInfo: ModelArtifactsInfo

Information about the model artifacts saved.

responses?: Response[]

HTTP responses from the server that handled the model-saving request (if any). This is applicable only to server-based saving routes.