Class OrganizationClientGrant

java.lang.Object
com.auth0.json.mgmt.organizations.OrganizationClientGrant

public class OrganizationClientGrant extends Object
Represents a client grant associated with an organization.
See Also:
  • Constructor Details

    • OrganizationClientGrant

      public OrganizationClientGrant()
  • Method Details

    • getId

      public String getId()
      Getter for the id of the client grant.
      Returns:
      the id.
    • getClientId

      public String getClientId()
      Getter for the client id of the application.
      Returns:
      the application's client id.
    • setClientId

      public void setClientId(String clientId)
      Setter for the application's client id.
      Parameters:
      clientId - the application's client id to set.
    • getAudience

      public String getAudience()
      Getter for the audience.
      Returns:
      the audience.
    • setAudience

      public void setAudience(String audience)
      Setter for the audience.
      Parameters:
      audience - the audience to set.
    • getScope

      public List<String> getScope()
      Getter for the scope.
      Returns:
      the scope.
    • setScope

      public void setScope(List<String> scope)
      Setter for the scope.
      Parameters:
      scope - the scope to set.