GraphQL OBJECT

ClientPolicy

Policy and procedure for the client account.

link Definition

  • type ClientPolicy {
  • # Type of the policy.
  • type: ClientPolicyType
  • # Text of the client policy in RTF format.
  • policyText: String @deprecated( reason: "Use policyTextHtml instead." )
  • # Text of the client policy in HTML format.
  • policyTextHtml: String
  • # Short comment about the policy.
  • shortComment: String
  • # Language of the policy.
  • language: Language
  • # Date and time when the policy was created.
  • creationDate: DateTime
  • # Date and time when the policy was last modified.
  • lastModifyDate: DateTime
  • # User who created the policy.
  • createdBy: UserAccount!
  • # User who last modified the policy.
  • lastModifiedBy: UserAccount!
  • # Client which the client policy belongs to.
  • client: Client!
  • }