Skip to main content

ApplicationAccessData

No description

type ApplicationAccessData {
owner: String!
code: Int!
appCode: String!
isActive: Boolean!
isArchived: Boolean!
connections: ApplicationAccessConnectionConnection
parameters: [Parameter!]!
createdAt: DateTime!
updatedAt: DateTime!
applyAllConnections: Boolean!
}

Fields

ApplicationAccessData.owner ● String! non-null scalar

Identifier of the owner responsible for this application access.

ApplicationAccessData.code ● Int! non-null scalar

Unique numeric code assigned to the application access.

ApplicationAccessData.appCode ● String! non-null scalar

Unique code of the application to which this access belongs.

ApplicationAccessData.isActive ● Boolean! non-null scalar

Indicates whether the application access is currently active.

ApplicationAccessData.isArchived ● Boolean! non-null scalar

Specifies whether the application access is archived. Used to implement soft deletion without permanently removing the access.

ApplicationAccessData.connections ● ApplicationAccessConnectionConnection object

List of connections associated with this application access.

ApplicationAccessData.parameters ● [Parameter!]! non-null object

Parameters configured for this application access.

ApplicationAccessData.createdAt ● DateTime! non-null scalar

Date when the application access was created.

ApplicationAccessData.updatedAt ● DateTime! non-null scalar

Date when the application access was last updated.

ApplicationAccessData.applyAllConnections ● Boolean! non-null scalar

Determines whether the access applies to all connections. When set to true, the rule is applied to both existing and future connections, and the connections explicitly listed in the connections field are ignored.

Member Of

ApplicationAccess object