Skip to content

Commit

Permalink
Add support for seal footer templating (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
haysch authored Oct 31, 2024
1 parent 4f62d26 commit cac6a2c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Criipto.Signatures/Models.cs
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,12 @@ public class CreateSignatureOrderInput {
public List<EvidenceValidationStage> evidenceValidationStages { get; set; }

/// <summary>
/// When this signature order will auto-close/expire. Default 90 days.
/// When this signature order will auto-close/expire at exactly in one of the following ISO-8601 formats: yyyy-MM-ddTHH:mm:ssZ, yyyy-MM-ddTHH:mm:ss.ffZ, yyyy-MM-ddTHH:mm:ss.fffZ, yyyy-MM-ddTHH:mm:ssK, yyyy-MM-ddTHH:mm:ss.ffK, yyyy-MM-ddTHH:mm:ss.fffK. Cannot be provided with `expiresInDays`.
/// </summary>
public string expiresAt { get; set; }

/// <summary>
/// When this signature order will auto-close/expire. Default 90 days. Cannot be provided with `expiresAt`
/// </summary>
public int? expiresInDays { get; set; }

Expand Down Expand Up @@ -2719,6 +2724,8 @@ public class SignatureAppearanceInput {
#region members
public List<SignatureAppearanceTemplateInput> displayName { get; set; }

public List<SignatureAppearanceTemplateInput> footer { get; set; }

public List<SignatureAppearanceTemplateInput> headerLeft { get; set; }

/// <summary>
Expand Down

0 comments on commit cac6a2c

Please sign in to comment.