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-androidmanagement/v1/2.0.0/com/google/api/services/androidmanagement/v1/model/SigninDetail.java
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,19 @@ public final class SigninDetail extends com.google.api.client.json.GenericJson {
54
54
@com.google.api.client.util.Key
55
55
privatejava.lang.StringallowPersonalUsage;
56
56
57
+
/**
58
+
* Optional. Whether the sign-in URL should be used by default for the enterprise. The
59
+
* SigninDetail with defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT is used for Google account
60
+
* enrollment method. Only one of an enterprise's signinDetails can have defaultStatus set to
61
+
* SIGNIN_DETAIL_IS_DEFAULT. If an Enterprise has at least one signinDetails and none of them have
62
+
* defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT then the first one from the list is selected and
63
+
* has set defaultStatus to SIGNIN_DETAIL_IS_DEFAULT. If no signinDetails specified for the
64
+
* Enterprise then the Google Account device enrollment will fail.
65
+
* The value may be {@code null}.
66
+
*/
67
+
@com.google.api.client.util.Key
68
+
privatejava.lang.StringdefaultStatus;
69
+
57
70
/**
58
71
* A JSON string whose UTF-8 representation can be used to generate a QR code to enroll a device
59
72
* with this enrollment token. To enroll a device using NFC, the NFC record must contain a
@@ -116,6 +129,35 @@ public SigninDetail setAllowPersonalUsage(java.lang.String allowPersonalUsage) {
116
129
returnthis;
117
130
}
118
131
132
+
/**
133
+
* Optional. Whether the sign-in URL should be used by default for the enterprise. The
134
+
* SigninDetail with defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT is used for Google account
135
+
* enrollment method. Only one of an enterprise's signinDetails can have defaultStatus set to
136
+
* SIGNIN_DETAIL_IS_DEFAULT. If an Enterprise has at least one signinDetails and none of them have
137
+
* defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT then the first one from the list is selected and
138
+
* has set defaultStatus to SIGNIN_DETAIL_IS_DEFAULT. If no signinDetails specified for the
139
+
* Enterprise then the Google Account device enrollment will fail.
140
+
* @return value or {@code null} for none
141
+
*/
142
+
publicjava.lang.StringgetDefaultStatus() {
143
+
returndefaultStatus;
144
+
}
145
+
146
+
/**
147
+
* Optional. Whether the sign-in URL should be used by default for the enterprise. The
148
+
* SigninDetail with defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT is used for Google account
149
+
* enrollment method. Only one of an enterprise's signinDetails can have defaultStatus set to
150
+
* SIGNIN_DETAIL_IS_DEFAULT. If an Enterprise has at least one signinDetails and none of them have
151
+
* defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT then the first one from the list is selected and
152
+
* has set defaultStatus to SIGNIN_DETAIL_IS_DEFAULT. If no signinDetails specified for the
153
+
* Enterprise then the Google Account device enrollment will fail.
154
+
* @param defaultStatus defaultStatus or {@code null} for none
0 commit comments