Class PciDocumentInfo


  • public class PciDocumentInfo
    extends Object
    PciDocumentInfo
    • Constructor Detail

      • PciDocumentInfo

        public PciDocumentInfo()
    • Method Detail

      • getCreatedAt

        public OffsetDateTime getCreatedAt()
        The date the questionnaire was created, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00
        Returns:
        createdAt
      • setCreatedAt

        public void setCreatedAt​(OffsetDateTime createdAt)
        The date the questionnaire was created, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00
        Parameters:
        createdAt -
      • getId

        public String getId()
        The unique identifier of the signed questionnaire.
        Returns:
        id
      • setId

        public void setId​(String id)
        The unique identifier of the signed questionnaire.
        Parameters:
        id -
      • getValidUntil

        public OffsetDateTime getValidUntil()
        The expiration date of the questionnaire, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00
        Returns:
        validUntil
      • setValidUntil

        public void setValidUntil​(OffsetDateTime validUntil)
        The expiration date of the questionnaire, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00
        Parameters:
        validUntil -
      • equals

        public boolean equals​(Object o)
        Return true if this PciDocumentInfo object is equal to o.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • fromJson

        public static PciDocumentInfo fromJson​(String jsonString)
                                        throws com.fasterxml.jackson.core.JsonProcessingException
        Create an instance of PciDocumentInfo given an JSON string
        Parameters:
        jsonString - JSON string
        Returns:
        An instance of PciDocumentInfo
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException - if the JSON string is invalid with respect to PciDocumentInfo
      • toJson

        public String toJson()
                      throws com.fasterxml.jackson.core.JsonProcessingException
        Convert an instance of PciDocumentInfo to an JSON string
        Returns:
        JSON string
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException