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
Copy file name to clipboardExpand all lines: clients/google-api-services-walletobjects/v1/2.0.0/com/google/api/services/walletobjects/model/ContentTypeInfo.java
+81Lines changed: 81 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,13 @@ public final class ContentTypeInfo extends com.google.api.client.json.GenericJso
55
55
@com.google.api.client.util.Key
56
56
privatejava.lang.StringfromFileName;
57
57
58
+
/**
59
+
* The content type of the file detected by Fusion ID. go/fusionid
60
+
* The value may be {@code null}.
61
+
*/
62
+
@com.google.api.client.util.Key
63
+
privatejava.lang.StringfromFusionId;
64
+
58
65
/**
59
66
* The content type of the file as specified in the request headers, multipart headers, or RUPIO
60
67
* start request.
@@ -72,6 +79,14 @@ public final class ContentTypeInfo extends com.google.api.client.json.GenericJso
72
79
@com.google.api.client.util.Key
73
80
privatejava.lang.StringfromUrlPath;
74
81
82
+
/**
83
+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
84
+
* set if from_fusion_id is set.
85
+
* The value may be {@code null}.
86
+
*/
87
+
@com.google.api.client.util.Key
88
+
privatejava.lang.StringfusionIdDetectionMetadata;
89
+
75
90
/**
76
91
* Scotty's best guess of what the content type of the file is.
77
92
* @return value or {@code null} for none
@@ -127,6 +142,23 @@ public ContentTypeInfo setFromFileName(java.lang.String fromFileName) {
127
142
returnthis;
128
143
}
129
144
145
+
/**
146
+
* The content type of the file detected by Fusion ID. go/fusionid
147
+
* @return value or {@code null} for none
148
+
*/
149
+
publicjava.lang.StringgetFromFusionId() {
150
+
returnfromFusionId;
151
+
}
152
+
153
+
/**
154
+
* The content type of the file detected by Fusion ID. go/fusionid
155
+
* @param fromFusionId fromFusionId or {@code null} for none
0 commit comments