@@ -39,6 +39,12 @@ class GdataContentTypeInfo extends \Google\Model
3939 * @var string
4040 */
4141 public $ fromFileName ;
42+ /**
43+ * The content type of the file detected by Fusion ID. go/fusionid
44+ *
45+ * @var string
46+ */
47+ public $ fromFusionId ;
4248 /**
4349 * The content type of the file as specified in the request headers, multipart
4450 * headers, or RUPIO start request.
@@ -54,6 +60,13 @@ class GdataContentTypeInfo extends \Google\Model
5460 * @var string
5561 */
5662 public $ fromUrlPath ;
63+ /**
64+ * Metadata information from Fusion ID detection. Serialized
65+ * FusionIdDetectionMetadata proto. Only set if from_fusion_id is set.
66+ *
67+ * @var string
68+ */
69+ public $ fusionIdDetectionMetadata ;
5770
5871 /**
5972 * Scotty's best guess of what the content type of the file is.
@@ -105,6 +118,22 @@ public function getFromFileName()
105118 {
106119 return $ this ->fromFileName ;
107120 }
121+ /**
122+ * The content type of the file detected by Fusion ID. go/fusionid
123+ *
124+ * @param string $fromFusionId
125+ */
126+ public function setFromFusionId ($ fromFusionId )
127+ {
128+ $ this ->fromFusionId = $ fromFusionId ;
129+ }
130+ /**
131+ * @return string
132+ */
133+ public function getFromFusionId ()
134+ {
135+ return $ this ->fromFusionId ;
136+ }
108137 /**
109138 * The content type of the file as specified in the request headers, multipart
110139 * headers, or RUPIO start request.
@@ -140,6 +169,23 @@ public function getFromUrlPath()
140169 {
141170 return $ this ->fromUrlPath ;
142171 }
172+ /**
173+ * Metadata information from Fusion ID detection. Serialized
174+ * FusionIdDetectionMetadata proto. Only set if from_fusion_id is set.
175+ *
176+ * @param string $fusionIdDetectionMetadata
177+ */
178+ public function setFusionIdDetectionMetadata ($ fusionIdDetectionMetadata )
179+ {
180+ $ this ->fusionIdDetectionMetadata = $ fusionIdDetectionMetadata ;
181+ }
182+ /**
183+ * @return string
184+ */
185+ public function getFusionIdDetectionMetadata ()
186+ {
187+ return $ this ->fusionIdDetectionMetadata ;
188+ }
143189}
144190
145191// Adding a class alias for backwards compatibility with the previous class name.
0 commit comments