Skip to content

Commit 55e45e1

Browse files
author
Pavel-Teplitsky
committed
added new models
1 parent bc2ed55 commit 55e45e1

File tree

3 files changed

+192
-0
lines changed

3 files changed

+192
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/**
2+
* Copyright 2012 GroupDocs.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
packagecom.groupdocs.sdk.model;
17+
18+
importjava.util.*;
19+
importcom.groupdocs.sdk.model.TemplateField;
20+
/**
21+
*
22+
* <p>
23+
* NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
24+
*
25+
*/
26+
publicclassCreateQuestionnaireTemplateResponse{
27+
privateList<TemplateField> result = newArrayList<TemplateField>();
28+
privateStringstatus = null;
29+
privateStringerror_message = null;
30+
privateLongcomposedOn = null;
31+
publicList<TemplateField> getResult(){
32+
returnresult;
33+
}
34+
publicvoidsetResult(List<TemplateField> result){
35+
this.result = result;
36+
}
37+
38+
publicStringgetStatus(){
39+
returnstatus;
40+
}
41+
publicvoidsetStatus(Stringstatus){
42+
this.status = status;
43+
}
44+
45+
publicStringgetError_message(){
46+
returnerror_message;
47+
}
48+
publicvoidsetError_message(Stringerror_message){
49+
this.error_message = error_message;
50+
}
51+
52+
publicLonggetComposedOn(){
53+
returncomposedOn;
54+
}
55+
publicvoidsetComposedOn(LongcomposedOn){
56+
this.composedOn = composedOn;
57+
}
58+
59+
@Override
60+
publicStringtoString(){
61+
StringBuildersb = newStringBuilder();
62+
sb.append("class CreateQuestionnaireTemplateResponse{\n");
63+
sb.append(" result: ").append(result).append("\n");
64+
sb.append(" status: ").append(status).append("\n");
65+
sb.append(" error_message: ").append(error_message).append("\n");
66+
sb.append(" composedOn: ").append(composedOn).append("\n");
67+
sb.append("}\n");
68+
returnsb.toString();
69+
}
70+
}
71+
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/**
2+
* Copyright 2012 GroupDocs.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
packagecom.groupdocs.sdk.model;
17+
18+
importcom.groupdocs.sdk.model.DeleteDocumentAnnotationsResult;
19+
/**
20+
*
21+
* <p>
22+
* NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
23+
*
24+
*/
25+
publicclassDeleteDocumentAnnotationsReponse{
26+
privateDeleteDocumentAnnotationsResultresult = null;
27+
privateStringstatus = null;
28+
privateStringerror_message = null;
29+
privateLongcomposedOn = null;
30+
publicDeleteDocumentAnnotationsResultgetResult(){
31+
returnresult;
32+
}
33+
publicvoidsetResult(DeleteDocumentAnnotationsResultresult){
34+
this.result = result;
35+
}
36+
37+
publicStringgetStatus(){
38+
returnstatus;
39+
}
40+
publicvoidsetStatus(Stringstatus){
41+
this.status = status;
42+
}
43+
44+
publicStringgetError_message(){
45+
returnerror_message;
46+
}
47+
publicvoidsetError_message(Stringerror_message){
48+
this.error_message = error_message;
49+
}
50+
51+
publicLonggetComposedOn(){
52+
returncomposedOn;
53+
}
54+
publicvoidsetComposedOn(LongcomposedOn){
55+
this.composedOn = composedOn;
56+
}
57+
58+
@Override
59+
publicStringtoString(){
60+
StringBuildersb = newStringBuilder();
61+
sb.append("class DeleteDocumentAnnotationsReponse{\n");
62+
sb.append(" result: ").append(result).append("\n");
63+
sb.append(" status: ").append(status).append("\n");
64+
sb.append(" error_message: ").append(error_message).append("\n");
65+
sb.append(" composedOn: ").append(composedOn).append("\n");
66+
sb.append("}\n");
67+
returnsb.toString();
68+
}
69+
}
70+
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/**
2+
* Copyright 2012 GroupDocs.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
packagecom.groupdocs.sdk.model;
17+
18+
/**
19+
*
20+
* <p>
21+
* NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
22+
*
23+
*/
24+
publicclassDeleteDocumentAnnotationsResult{
25+
privateDoubleid = null;
26+
privateStringguid = null;
27+
publicDoublegetId(){
28+
returnid;
29+
}
30+
publicvoidsetId(Doubleid){
31+
this.id = id;
32+
}
33+
34+
publicStringgetGuid(){
35+
returnguid;
36+
}
37+
publicvoidsetGuid(Stringguid){
38+
this.guid = guid;
39+
}
40+
41+
@Override
42+
publicStringtoString(){
43+
StringBuildersb = newStringBuilder();
44+
sb.append("class DeleteDocumentAnnotationsResult{\n");
45+
sb.append(" id: ").append(id).append("\n");
46+
sb.append(" guid: ").append(guid).append("\n");
47+
sb.append("}\n");
48+
returnsb.toString();
49+
}
50+
}
51+

0 commit comments

Comments
(0)