Package org.openapitools.client.model
Class AuthQuery
- java.lang.Object
-
- org.openapitools.client.model.AuthQuery
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-03-29T12:34:27.506198300-05:00[America/Chicago]", comments="Generator version: 7.4.0") public class AuthQuery extends Object
AuthQuery
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAuthQuery.CustomTypeAdapterFactory
-
Field Summary
Fields Modifier and Type Field Description static HashSet<String>openapiFieldsstatic HashSet<String>openapiRequiredFieldsstatic StringSERIALIZED_NAME_INV_CODEstatic StringSERIALIZED_NAME_ORGANIZATION_IDstatic StringSERIALIZED_NAME_REDIRECT_URI
-
Constructor Summary
Constructors Constructor Description AuthQuery()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)static AuthQueryfromJson(String jsonString)Create an instance of AuthQuery given an JSON string@Valid UUIDgetInvCode()Code sent via email as a result of successful call to send_invitation@Valid UUIDgetOrganizationId()ID of organization to authenticate intoStringgetRedirectUri()URL to redirect to after successful logininthashCode()AuthQueryinvCode(UUID invCode)AuthQueryorganizationId(UUID organizationId)AuthQueryredirectUri(String redirectUri)voidsetInvCode(UUID invCode)voidsetOrganizationId(UUID organizationId)voidsetRedirectUri(String redirectUri)StringtoJson()Convert an instance of AuthQuery to an JSON stringStringtoString()static voidvalidateJsonElement(com.google.gson.JsonElement jsonElement)Validates the JSON Element and throws an exception if issues found
-
-
-
Field Detail
-
SERIALIZED_NAME_INV_CODE
public static final String SERIALIZED_NAME_INV_CODE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ORGANIZATION_ID
public static final String SERIALIZED_NAME_ORGANIZATION_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_REDIRECT_URI
public static final String SERIALIZED_NAME_REDIRECT_URI
- See Also:
- Constant Field Values
-
-
Method Detail
-
getInvCode
@Nullable @Valid public @Valid UUID getInvCode()
Code sent via email as a result of successful call to send_invitation- Returns:
- invCode
-
setInvCode
public void setInvCode(UUID invCode)
-
getOrganizationId
@Nullable @Valid public @Valid UUID getOrganizationId()
ID of organization to authenticate into- Returns:
- organizationId
-
setOrganizationId
public void setOrganizationId(UUID organizationId)
-
getRedirectUri
@Nullable public String getRedirectUri()
URL to redirect to after successful login- Returns:
- redirectUri
-
setRedirectUri
public void setRedirectUri(String redirectUri)
-
validateJsonElement
public static void validateJsonElement(com.google.gson.JsonElement jsonElement) throws IOExceptionValidates the JSON Element and throws an exception if issues found- Parameters:
jsonElement- JSON Element- Throws:
IOException- if the JSON Element is invalid with respect to AuthQuery
-
fromJson
public static AuthQuery fromJson(String jsonString) throws IOException
Create an instance of AuthQuery given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of AuthQuery
- Throws:
IOException- if the JSON string is invalid with respect to AuthQuery
-
toJson
public String toJson()
Convert an instance of AuthQuery to an JSON string- Returns:
- JSON string
-
-