OBJECT

OrgFileResource

link GraphQL Schema definition

1type OrgFileResource {
2
3# Unique ID of the file resource
4fileId: ID
5
6# The name of the document
7name: String
8
9# The URL of the uploaded document.
10url: String!
11
12# The type of the document (privacy policy or terms of service).
13type: OrgDocumentType!
14
15# The status of the document (active or inactive).
16status: String
17
18}