---
title: "SignatureDto"
url: "https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84/schemas/SignatureDto"
---

> Full API specification: https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84.md

# SignatureDto

Signature details for the agent change

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia Policy Transactions API.
  version: 1.0.8
servers:
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://qa.api.zinnia.io
    description: QA Environment
components:
  schemas:
    SignatureDto:
      type: object
      description: Signature details for the agent change
      properties:
        signType:
          type: string
          description: Type of the signature (e.g., digital, physical)
          example: DIGITAL
        isSignedPresent:
          type: boolean
          description: Indicates if a signature is present
          example: true
        signDate:
          type: string
          format: date
          description: Date when the signature was applied
          example: 2024-01-01
        signPrintName:
          type: string
          description: Name of the person signing
          example: John Doe
        signGuarantee:
          type: string
          description: Guarantee associated with the signature
          example: FULL
        signDesignation:
          type: string
          description: Designation of the signer
          example: MANAGER
```
