@icure/api 8.5.10 → 8.5.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* iCure Data Stack API Documentation
|
|
3
|
+
* The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: v1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AbstractFilterCode } from '../../icc-api/model/AbstractFilterCode';
|
|
13
|
+
export declare class CodeByRegionTypeCodeVersionFilter extends AbstractFilterCode {
|
|
14
|
+
$type: string;
|
|
15
|
+
constructor(json: JSON | any);
|
|
16
|
+
region: string;
|
|
17
|
+
type?: string;
|
|
18
|
+
code?: string;
|
|
19
|
+
version?: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* iCure Data Stack API Documentation
|
|
4
|
+
* The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: v1
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
10
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.CodeByRegionTypeCodeVersionFilter = void 0;
|
|
15
|
+
const AbstractFilterCode_1 = require("../../icc-api/model/AbstractFilterCode");
|
|
16
|
+
class CodeByRegionTypeCodeVersionFilter extends AbstractFilterCode_1.AbstractFilterCode {
|
|
17
|
+
constructor(json) {
|
|
18
|
+
super(json);
|
|
19
|
+
this.$type = 'CodeByRegionTypeCodeVersionFilter';
|
|
20
|
+
Object.assign(this, json);
|
|
21
|
+
this.region = json.region;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.CodeByRegionTypeCodeVersionFilter = CodeByRegionTypeCodeVersionFilter;
|
|
25
|
+
//# sourceMappingURL=CodeByRegionTypeCodeVersionFilter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CodeByRegionTypeCodeVersionFilter.js","sourceRoot":"","sources":["../../../icc-x-api/filters/CodeByRegionTypeCodeVersionFilter.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,+EAA2E;AAE3E,MAAa,iCAAkC,SAAQ,uCAAkB;IAEvE,YAAY,IAAgB;QAC1B,KAAK,CAAC,IAAI,CAAC,CAAA;QAFb,UAAK,GAAW,mCAAmC,CAAA;QAIjD,MAAM,CAAC,MAAM,CAAC,IAAyC,EAAE,IAAI,CAAC,CAAA;QAC9D,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;IAC3B,CAAC;CAMF;AAbD,8EAaC","sourcesContent":["/**\n * iCure Data Stack API Documentation\n * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.\n *\n * OpenAPI spec version: v1\n *\n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nimport { AbstractFilterCode } from '../../icc-api/model/AbstractFilterCode'\n\nexport class CodeByRegionTypeCodeVersionFilter extends AbstractFilterCode {\n $type: string = 'CodeByRegionTypeCodeVersionFilter'\n constructor(json: JSON | any) {\n super(json)\n\n Object.assign(this as CodeByRegionTypeCodeVersionFilter, json)\n this.region = json.region\n }\n\n region: string\n type?: string\n code?: string\n version?: string\n}\n"]}
|