Skip to content

Commit 0d1f863

Browse files
committed
Auto-generate SDK for FinFeedAPI Stock API REST Historical
1 parent 241a6d5 commit 0d1f863

File tree

117 files changed

+2869
-249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+2869
-249
lines changed

finfeedapi/stock-api-rest/sdk/ada/src/model/-models.adb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -891,6 +891,10 @@ package body .Models is
891891
Into.Write_Entity ("cfi_attribute4", Value.Cfi_Attribute_4);
892892
Into.Write_Entity ("cfi_category_desc", Value.Cfi_Category_Desc);
893893
Into.Write_Entity ("cfi_group_desc", Value.Cfi_Group_Desc);
894+
Into.Write_Entity ("cfi_attribute1_desc", Value.Cfi_Attribute_1_Desc);
895+
Into.Write_Entity ("cfi_attribute2_desc", Value.Cfi_Attribute_2_Desc);
896+
Into.Write_Entity ("cfi_attribute3_desc", Value.Cfi_Attribute_3_Desc);
897+
Into.Write_Entity ("cfi_attribute4_desc", Value.Cfi_Attribute_4_Desc);
894898
Into.End_Entity (Name);
895899
end Serialize;
896900

@@ -926,6 +930,10 @@ package body .Models is
926930
Swagger.Streams.Deserialize (Object, "cfi_attribute4", Value.Cfi_Attribute_4);
927931
Swagger.Streams.Deserialize (Object, "cfi_category_desc", Value.Cfi_Category_Desc);
928932
Swagger.Streams.Deserialize (Object, "cfi_group_desc", Value.Cfi_Group_Desc);
933+
Swagger.Streams.Deserialize (Object, "cfi_attribute1_desc", Value.Cfi_Attribute_1_Desc);
934+
Swagger.Streams.Deserialize (Object, "cfi_attribute2_desc", Value.Cfi_Attribute_2_Desc);
935+
Swagger.Streams.Deserialize (Object, "cfi_attribute3_desc", Value.Cfi_Attribute_3_Desc);
936+
Swagger.Streams.Deserialize (Object, "cfi_attribute4_desc", Value.Cfi_Attribute_4_Desc);
929937
end Deserialize;
930938

931939
procedure Deserialize (From : in Swagger.Value_Type;

finfeedapi/stock-api-rest/sdk/ada/src/model/-models.ads

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,10 @@ package .Models is
411411
Cfi_Attribute_4 : Swagger.Nullable_UString;
412412
Cfi_Category_Desc : Swagger.Nullable_UString;
413413
Cfi_Group_Desc : Swagger.Nullable_UString;
414+
Cfi_Attribute_1_Desc : Swagger.Nullable_UString;
415+
Cfi_Attribute_2_Desc : Swagger.Nullable_UString;
416+
Cfi_Attribute_3_Desc : Swagger.Nullable_UString;
417+
Cfi_Attribute_4_Desc : Swagger.Nullable_UString;
414418
end record;
415419

416420

finfeedapi/stock-api-rest/sdk/android/docs/FinFeedAPISymbolModel.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ Name | Type | Description | Notes
2121
**cfiAttribute4** | **String** | | [optional] [readonly]
2222
**cfiCategoryDesc** | **String** | | [optional] [readonly]
2323
**cfiGroupDesc** | **String** | | [optional] [readonly]
24+
**cfiAttribute1Desc** | **String** | | [optional] [readonly]
25+
**cfiAttribute2Desc** | **String** | | [optional] [readonly]
26+
**cfiAttribute3Desc** | **String** | | [optional] [readonly]
27+
**cfiAttribute4Desc** | **String** | | [optional] [readonly]
2428

2529

2630

finfeedapi/stock-api-rest/sdk/android/src/main/java/org/openapitools/client/model/FinFeedAPISymbolModel.java

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ public class FinFeedAPISymbolModel extends HashMap<String, OasAnyTypeNotMapped>
5151
private String cfiCategoryDesc = null;
5252
@SerializedName("cfi_group_desc")
5353
private String cfiGroupDesc = null;
54+
@SerializedName("cfi_attribute1_desc")
55+
private String cfiAttribute1Desc = null;
56+
@SerializedName("cfi_attribute2_desc")
57+
private String cfiAttribute2Desc = null;
58+
@SerializedName("cfi_attribute3_desc")
59+
private String cfiAttribute3Desc = null;
60+
@SerializedName("cfi_attribute4_desc")
61+
private String cfiAttribute4Desc = null;
5462

5563
/**
5664
**/
@@ -202,6 +210,46 @@ public void setCfiGroupDesc(String cfiGroupDesc) {
202210
this.cfiGroupDesc = cfiGroupDesc;
203211
}
204212

213+
/**
214+
**/
215+
@ApiModelProperty(value = "")
216+
public String getCfiAttribute1Desc() {
217+
return cfiAttribute1Desc;
218+
}
219+
public void setCfiAttribute1Desc(String cfiAttribute1Desc) {
220+
this.cfiAttribute1Desc = cfiAttribute1Desc;
221+
}
222+
223+
/**
224+
**/
225+
@ApiModelProperty(value = "")
226+
public String getCfiAttribute2Desc() {
227+
return cfiAttribute2Desc;
228+
}
229+
public void setCfiAttribute2Desc(String cfiAttribute2Desc) {
230+
this.cfiAttribute2Desc = cfiAttribute2Desc;
231+
}
232+
233+
/**
234+
**/
235+
@ApiModelProperty(value = "")
236+
public String getCfiAttribute3Desc() {
237+
return cfiAttribute3Desc;
238+
}
239+
public void setCfiAttribute3Desc(String cfiAttribute3Desc) {
240+
this.cfiAttribute3Desc = cfiAttribute3Desc;
241+
}
242+
243+
/**
244+
**/
245+
@ApiModelProperty(value = "")
246+
public String getCfiAttribute4Desc() {
247+
return cfiAttribute4Desc;
248+
}
249+
public void setCfiAttribute4Desc(String cfiAttribute4Desc) {
250+
this.cfiAttribute4Desc = cfiAttribute4Desc;
251+
}
252+
205253

206254
@Override
207255
public boolean equals(Object o) {
@@ -226,7 +274,11 @@ public boolean equals(Object o) {
226274
(this.cfiAttribute3 == null ? finFeedAPISymbolModel.cfiAttribute3 == null : this.cfiAttribute3.equals(finFeedAPISymbolModel.cfiAttribute3)) &&
227275
(this.cfiAttribute4 == null ? finFeedAPISymbolModel.cfiAttribute4 == null : this.cfiAttribute4.equals(finFeedAPISymbolModel.cfiAttribute4)) &&
228276
(this.cfiCategoryDesc == null ? finFeedAPISymbolModel.cfiCategoryDesc == null : this.cfiCategoryDesc.equals(finFeedAPISymbolModel.cfiCategoryDesc)) &&
229-
(this.cfiGroupDesc == null ? finFeedAPISymbolModel.cfiGroupDesc == null : this.cfiGroupDesc.equals(finFeedAPISymbolModel.cfiGroupDesc));
277+
(this.cfiGroupDesc == null ? finFeedAPISymbolModel.cfiGroupDesc == null : this.cfiGroupDesc.equals(finFeedAPISymbolModel.cfiGroupDesc)) &&
278+
(this.cfiAttribute1Desc == null ? finFeedAPISymbolModel.cfiAttribute1Desc == null : this.cfiAttribute1Desc.equals(finFeedAPISymbolModel.cfiAttribute1Desc)) &&
279+
(this.cfiAttribute2Desc == null ? finFeedAPISymbolModel.cfiAttribute2Desc == null : this.cfiAttribute2Desc.equals(finFeedAPISymbolModel.cfiAttribute2Desc)) &&
280+
(this.cfiAttribute3Desc == null ? finFeedAPISymbolModel.cfiAttribute3Desc == null : this.cfiAttribute3Desc.equals(finFeedAPISymbolModel.cfiAttribute3Desc)) &&
281+
(this.cfiAttribute4Desc == null ? finFeedAPISymbolModel.cfiAttribute4Desc == null : this.cfiAttribute4Desc.equals(finFeedAPISymbolModel.cfiAttribute4Desc));
230282
}
231283

232284
@Override
@@ -247,6 +299,10 @@ public int hashCode() {
247299
result = 31 * result + (this.cfiAttribute4 == null ? 0: this.cfiAttribute4.hashCode());
248300
result = 31 * result + (this.cfiCategoryDesc == null ? 0: this.cfiCategoryDesc.hashCode());
249301
result = 31 * result + (this.cfiGroupDesc == null ? 0: this.cfiGroupDesc.hashCode());
302+
result = 31 * result + (this.cfiAttribute1Desc == null ? 0: this.cfiAttribute1Desc.hashCode());
303+
result = 31 * result + (this.cfiAttribute2Desc == null ? 0: this.cfiAttribute2Desc.hashCode());
304+
result = 31 * result + (this.cfiAttribute3Desc == null ? 0: this.cfiAttribute3Desc.hashCode());
305+
result = 31 * result + (this.cfiAttribute4Desc == null ? 0: this.cfiAttribute4Desc.hashCode());
250306
return result;
251307
}
252308

@@ -270,6 +326,10 @@ public String toString() {
270326
sb.append(" cfiAttribute4: ").append(cfiAttribute4).append("\n");
271327
sb.append(" cfiCategoryDesc: ").append(cfiCategoryDesc).append("\n");
272328
sb.append(" cfiGroupDesc: ").append(cfiGroupDesc).append("\n");
329+
sb.append(" cfiAttribute1Desc: ").append(cfiAttribute1Desc).append("\n");
330+
sb.append(" cfiAttribute2Desc: ").append(cfiAttribute2Desc).append("\n");
331+
sb.append(" cfiAttribute3Desc: ").append(cfiAttribute3Desc).append("\n");
332+
sb.append(" cfiAttribute4Desc: ").append(cfiAttribute4Desc).append("\n");
273333
sb.append("}\n");
274334
return sb.toString();
275335
}

0 commit comments

Comments
 (0)