Class ApplicationIdpModel
- java.lang.Object
-
- app.cybrid.cybrid_api_id.client.model.ApplicationIdpModel
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2022-07-28T23:26:36.362865Z[Etc/UTC]") public class ApplicationIdpModel extends Object
ApplicationIdpModel
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classApplicationIdpModel.ScopesEnumGets or Sets scopes
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CLIENT_IDstatic StringJSON_PROPERTY_CREATED_ATstatic StringJSON_PROPERTY_NAMEstatic StringJSON_PROPERTY_SCOPES
-
Constructor Summary
Constructors Constructor Description ApplicationIdpModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApplicationIdpModeladdScopesItem(ApplicationIdpModel.ScopesEnum scopesItem)ApplicationIdpModelclientId(String clientId)ApplicationIdpModelcreatedAt(OffsetDateTime createdAt)booleanequals(Object o)StringgetClientId()The OAuth2 application's client ID.OffsetDateTimegetCreatedAt()ISO8601 datetime the application was created at.StringgetName()Name provided for the OAuth2 application.List<ApplicationIdpModel.ScopesEnum>getScopes()List of the scopes granted to the OAuth2 application.inthashCode()ApplicationIdpModelname(String name)ApplicationIdpModelscopes(List<ApplicationIdpModel.ScopesEnum> scopes)voidsetClientId(String clientId)voidsetCreatedAt(OffsetDateTime createdAt)voidsetName(String name)voidsetScopes(List<ApplicationIdpModel.ScopesEnum> scopes)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_NAME
public static final String JSON_PROPERTY_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_CLIENT_ID
public static final String JSON_PROPERTY_CLIENT_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SCOPES
public static final String JSON_PROPERTY_SCOPES
- See Also:
- Constant Field Values
-
JSON_PROPERTY_CREATED_AT
public static final String JSON_PROPERTY_CREATED_AT
- See Also:
- Constant Field Values
-
-
Method Detail
-
name
public ApplicationIdpModel name(String name)
-
setName
public void setName(String name)
-
clientId
public ApplicationIdpModel clientId(String clientId)
-
getClientId
@Nonnull public String getClientId()
The OAuth2 application's client ID.- Returns:
- clientId
-
setClientId
public void setClientId(String clientId)
-
scopes
public ApplicationIdpModel scopes(List<ApplicationIdpModel.ScopesEnum> scopes)
-
addScopesItem
public ApplicationIdpModel addScopesItem(ApplicationIdpModel.ScopesEnum scopesItem)
-
getScopes
@Nonnull public List<ApplicationIdpModel.ScopesEnum> getScopes()
List of the scopes granted to the OAuth2 application.- Returns:
- scopes
-
setScopes
public void setScopes(List<ApplicationIdpModel.ScopesEnum> scopes)
-
createdAt
public ApplicationIdpModel createdAt(OffsetDateTime createdAt)
-
getCreatedAt
@Nonnull public OffsetDateTime getCreatedAt()
ISO8601 datetime the application was created at.- Returns:
- createdAt
-
setCreatedAt
public void setCreatedAt(OffsetDateTime createdAt)
-
-