OBJECT

SignatureSigner

Signer involved in the signature process

link GraphQL Schema definition

1type SignatureSigner {
2
3# User associated with the signer
4user: User
5
6# Current status of the signer in the signature process
7status: SignatureSignerStatus
8
9# Email address of the signer
10email: String
11
12# Full name of the signer
13name: String
14
15}