@@ -304,6 +304,12 @@ export interface Asset {
304
304
*/
305
305
max_stored_resolution ?: 'Audio only' | 'SD' | 'HD' | 'FHD' | 'UHD' ;
306
306
307
+ /**
308
+ * Customer provided metadata about this asset.
309
+ *
310
+ * Note: This metadata may be publicly available via the video player. Do not
311
+ * include PII or sensitive information.
312
+ */
307
313
meta ?: Asset . Meta ;
308
314
309
315
/**
@@ -435,6 +441,12 @@ export namespace Asset {
435
441
url ?: string ;
436
442
}
437
443
444
+ /**
445
+ * Customer provided metadata about this asset.
446
+ *
447
+ * Note: This metadata may be publicly available via the video player. Do not
448
+ * include PII or sensitive information.
449
+ */
438
450
export interface Meta {
439
451
/**
440
452
* This is an identifier you provide to keep track of the creator of the video. Max
@@ -711,6 +723,12 @@ export interface AssetOptions {
711
723
*/
712
724
max_resolution_tier ?: '1080p' | '1440p' | '2160p' ;
713
725
726
+ /**
727
+ * Customer provided metadata about this asset.
728
+ *
729
+ * Note: This metadata may be publicly available via the video player. Do not
730
+ * include PII or sensitive information.
731
+ */
714
732
meta ?: AssetOptions . Meta ;
715
733
716
734
/**
@@ -1038,6 +1056,12 @@ export namespace AssetOptions {
1038
1056
}
1039
1057
}
1040
1058
1059
+ /**
1060
+ * Customer provided metadata about this asset.
1061
+ *
1062
+ * Note: This metadata may be publicly available via the video player. Do not
1063
+ * include PII or sensitive information.
1064
+ */
1041
1065
export interface Meta {
1042
1066
/**
1043
1067
* This is an identifier you provide to keep track of the creator of the video. Max
@@ -1496,6 +1520,12 @@ export interface AssetCreateParams {
1496
1520
*/
1497
1521
max_resolution_tier ?: '1080p' | '1440p' | '2160p' ;
1498
1522
1523
+ /**
1524
+ * Customer provided metadata about this asset.
1525
+ *
1526
+ * Note: This metadata may be publicly available via the video player. Do not
1527
+ * include PII or sensitive information.
1528
+ */
1499
1529
meta ?: AssetCreateParams . Meta ;
1500
1530
1501
1531
/**
@@ -1820,6 +1850,12 @@ export namespace AssetCreateParams {
1820
1850
policy ?: Shared . PlaybackPolicy ;
1821
1851
}
1822
1852
1853
+ /**
1854
+ * Customer provided metadata about this asset.
1855
+ *
1856
+ * Note: This metadata may be publicly available via the video player. Do not
1857
+ * include PII or sensitive information.
1858
+ */
1823
1859
export interface Meta {
1824
1860
/**
1825
1861
* This is an identifier you provide to keep track of the creator of the video. Max
@@ -1861,6 +1897,12 @@ export namespace AssetCreateParams {
1861
1897
}
1862
1898
1863
1899
export interface AssetUpdateParams {
1900
+ /**
1901
+ * Customer provided metadata about this asset.
1902
+ *
1903
+ * Note: This metadata may be publicly available via the video player. Do not
1904
+ * include PII or sensitive information.
1905
+ */
1864
1906
meta ?: AssetUpdateParams . Meta ;
1865
1907
1866
1908
/**
@@ -1874,6 +1916,12 @@ export interface AssetUpdateParams {
1874
1916
}
1875
1917
1876
1918
export namespace AssetUpdateParams {
1919
+ /**
1920
+ * Customer provided metadata about this asset.
1921
+ *
1922
+ * Note: This metadata may be publicly available via the video player. Do not
1923
+ * include PII or sensitive information.
1924
+ */
1877
1925
export interface Meta {
1878
1926
/**
1879
1927
* This is an identifier you provide to keep track of the creator of the video. Max
0 commit comments