Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RM-7414 added documentType field to Document class #85

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/main/java/com/greenfiling/smclient/model/Document.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,25 @@ public class Document extends DocumentBase {
public static final String TYPE = "document";

private String pdfDownloadUrl;
private String documentType;

public Document() {
super();
setType(TYPE);
}

public String getDocumentType(){
return documentType;
}

public String getPdfDownloadUrl() {
return this.pdfDownloadUrl;
}

public void setDocumentType(String documentType){
this.documentType = documentType;
}

public void setPdfDownloadUrl(String pdfDownloadUrl) {
this.pdfDownloadUrl = pdfDownloadUrl;
}
Expand Down
Loading