public final class AppStatistics
extends Object
| Constructor and Description |
|---|
AppStatistics(Long id,
String name,
AppSpace space,
String appGroup,
AppStatisticsStatus status,
ZonedDateTime recordUpdatedAt,
Long recordCount,
Long fieldCount,
Long dailyRequestCount,
Long storageUsage,
Boolean customized,
User creator,
ZonedDateTime createdAt,
User modifier,
ZonedDateTime modifiedAt)
Creates a new
AppStatistics instance. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
String |
getAppGroup()
The App group classification.
|
ZonedDateTime |
getCreatedAt()
The date of when the App was created.
|
User |
getCreator()
The information of the user who created the App.
|
Boolean |
getCustomized()
Whether the App has JavaScript/CSS/plugin customizations.
|
Long |
getDailyRequestCount()
The number of API calls per day.
|
Long |
getFieldCount()
The total number of fields.
|
Long |
getId()
The App ID.
|
ZonedDateTime |
getModifiedAt()
The date of when the App settings were last modified.
|
User |
getModifier()
The information of the user who last updated the App settings.
|
String |
getName()
The name of the App.
|
Long |
getRecordCount()
The total number of records.
|
ZonedDateTime |
getRecordUpdatedAt()
The date and time when the record was last updated.
|
AppSpace |
getSpace()
If the App was created inside a Space, it will return the Space information.
|
AppStatisticsStatus |
getStatus()
The status of the App settings.
|
Long |
getStorageUsage()
The file storage usage in bytes.
|
int |
hashCode() |
String |
toString() |
@ConstructorProperties(value={"id","name","space","appGroup","status","recordUpdatedAt","recordCount","fieldCount","dailyRequestCount","storageUsage","customized","creator","createdAt","modifier","modifiedAt"})
public AppStatistics(Long id,
String name,
AppSpace space,
String appGroup,
AppStatisticsStatus status,
ZonedDateTime recordUpdatedAt,
Long recordCount,
Long fieldCount,
Long dailyRequestCount,
Long storageUsage,
Boolean customized,
User creator,
ZonedDateTime createdAt,
User modifier,
ZonedDateTime modifiedAt)
AppStatistics instance.id - The App ID.name - The name of the App.space - If the App was created inside a Space, it will return the Space information. If not, null is
returned.appGroup - The App group classification.status - The status of the App settings.recordUpdatedAt - The date and time when the record was last updated.recordCount - The total number of records.fieldCount - The total number of fields.dailyRequestCount - The number of API calls per day.storageUsage - The file storage usage in bytes.customized - Whether the App has JavaScript/CSS/plugin customizations.creator - The information of the user who created the App.createdAt - The date of when the App was created.modifier - The information of the user who last updated the App settings.modifiedAt - The date of when the App settings were last modified.public Long getId()
public String getName()
public AppSpace getSpace()
public String getAppGroup()
public AppStatisticsStatus getStatus()
public ZonedDateTime getRecordUpdatedAt()
public Long getRecordCount()
public Long getFieldCount()
public Long getDailyRequestCount()
public Long getStorageUsage()
public Boolean getCustomized()
public User getCreator()
public ZonedDateTime getCreatedAt()
public User getModifier()
public ZonedDateTime getModifiedAt()
public boolean equals(Object o)
equals in class Objectpublic int hashCode()
hashCode in class Objectpublic String toString()
toString in class Object