com.dynamicpdf.api.PdfInfoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamicpdf-api Show documentation
Show all versions of dynamicpdf-api Show documentation
A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.
package com.dynamicpdf.api;
/**
* Represents the pdf inforamtion response.
*/
public class PdfInfoResponse extends JsonResponse {
private PdfInformation content;
/**
* Initializes a new instance of the PdfInfoResponse
class.
*/
public PdfInfoResponse() {
super();
}
/**
* Initializes a new instance of the PdfInfoResponse
class.
* @param jsonContent The json of pdf information.
*/
public PdfInfoResponse(String jsonContent) {
super(jsonContent);
//content = JsonConvert.DeserializeObject (super.getJsonContent());
}
/**
* Gets the pdf information content.
* @return The pdf information content.
*/
public PdfInformation getContent() {
return content;
}
/**
* Sets the pdf information content.
* @param value The pdf information content.
*/
private void setContent(PdfInformation value) {
content = value;
}
}