OBJECT

OrgFileResource

link GraphQL Schema definition

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