You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A key-value data to be associated with the asset. To unset a key, send null value for that key. Before setting any custom metadata on an asset you have to create the field using custom metadata fields API.
* AITags field is populated only because the google-auto-tagging extension was executed synchronously and it received a successresponse.
88
128
*/
89
-
AITags?: object[];
129
+
AITags?: AITagItem[];
90
130
/*
91
131
* Field object which will contain the status of each extension at the time of completion of the update/upload request.
92
132
*/
93
133
extensionStatus?: {[key: string]: string}
94
134
/*
95
135
* Consolidated embedded metadata associated with the file. It includes exif, iptc, and xmp data.
96
136
*/
97
-
embeddedMetadata?: object|null;
137
+
embeddedMetadata?: EmbeddedMetadataValues|null;
98
138
/*
99
139
* A key-value data associated with the asset. Before setting any custom metadata on an asset, you have to create the field using custom metadata fields API.
100
140
*/
101
-
customMetadata?: object;
141
+
customMetadata?: CmValues;
102
142
/*
103
143
* Size of the file in bytes
104
144
*/
@@ -130,7 +170,7 @@ export interface FileObject {
130
170
/**
131
171
* An object containing the file or file version's id (versionId) and name.
* The metadata of the upload file. Use responseFields property in request to get the metadata returned in response of upload API.
59
61
*/
60
-
metadata?: object;
62
+
metadata?: FileMetadataResponse;
61
63
/*
62
64
* AITags field is populated only because the google-auto-tagging extension was executed synchronously and it received a successresponse.
63
65
*/
64
-
AITags?: object[];
66
+
AITags?: AITagItem[];
65
67
/*
66
68
* Field object which will contain the status of each extension at the time of completion of the update/upload request.
67
69
*/
68
70
extensionStatus?: {[key: string]: string}
69
71
/*
70
72
* Consolidated embedded metadata associated with the file. It includes exif, iptc, and xmp data.
71
73
*/
72
-
embeddedMetadata?: object|null;
74
+
embeddedMetadata?: EmbeddedMetadataValues|null;
73
75
/*
74
76
* A key-value data associated with the asset. Before setting any custom metadata on an asset, you have to create the field using custom metadata fields API.
0 commit comments