-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathDefaultTokenQuota.java
More file actions
59 lines (50 loc) · 1.4 KB
/
DefaultTokenQuota.java
File metadata and controls
59 lines (50 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.auth0.json.mgmt.tenants;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class DefaultTokenQuota {
@JsonProperty("clients")
private Clients clients;
@JsonProperty("organizations")
private Organizations organizations;
/**
* Default constructor for DefaultTokenQuota.
*/
public DefaultTokenQuota() {}
/**
* Constructor for DefaultTokenQuota.
*
* @param clients the clients
* @param organizations the organizations
*/
public DefaultTokenQuota(Clients clients, Organizations organizations) {
this.clients = clients;
this.organizations = organizations;
}
/**
* @return the clients
*/
public Clients getClients() {
return clients;
}
/**
* @param clients the clients to set
*/
public void setClients(Clients clients) {
this.clients = clients;
}
/**
* @return the organizations
*/
public Organizations getOrganizations() {
return organizations;
}
/**
* @param organizations the organizations to set
*/
public void setOrganizations(Organizations organizations) {
this.organizations = organizations;
}
}