@icure/api 8.0.61 → 8.0.62
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.
|
@@ -11,11 +11,25 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { Telecom } from './Telecom';
|
|
13
13
|
import { Annotation } from './Annotation';
|
|
14
|
+
import { CodeStub } from "./CodeStub";
|
|
15
|
+
import { Identifier } from "./Identifier";
|
|
14
16
|
/**
|
|
15
17
|
* This entity represents an Address
|
|
16
18
|
*/
|
|
17
19
|
export declare class Address {
|
|
18
20
|
constructor(json: JSON | any);
|
|
21
|
+
/**
|
|
22
|
+
* A tag is an item from a codification system that qualifies an entity as being member of a certain class, whatever the value it might have taken. If the tag qualifies the content of a field, it means that whatever the content of the field, the tag will always apply.
|
|
23
|
+
*/
|
|
24
|
+
tags?: Array<CodeStub>;
|
|
25
|
+
/**
|
|
26
|
+
* A code is an item from a codification system that qualifies the content of this entity.
|
|
27
|
+
*/
|
|
28
|
+
codes?: Array<CodeStub>;
|
|
29
|
+
/**
|
|
30
|
+
* The identifiers of the Address
|
|
31
|
+
*/
|
|
32
|
+
identifier?: Array<Identifier>;
|
|
19
33
|
/**
|
|
20
34
|
* The type of place the address represents, ex: home, office, hospital, clinic, etc.
|
|
21
35
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Address.js","sourceRoot":"","sources":["../../../icc-api/model/Address.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"Address.js","sourceRoot":"","sources":["../../../icc-api/model/Address.ts"],"names":[],"mappings":";;;AAgBA;;GAEG;AACH,MAAa,OAAO;IAClB,YAAY,IAAgB;QAC1B,MAAM,CAAC,MAAM,CAAC,IAAe,EAAE,IAAI,CAAC,CAAA;IACtC,CAAC;CAoEF;AAvED,0BAuEC;AACD,WAAiB,OAAO;IAcT,uBAAe,GAAG;QAC7B,IAAI,EAAE,MAAyB;QAC/B,IAAI,EAAE,MAAyB;QAC/B,QAAQ,EAAE,UAA6B;QACvC,QAAQ,EAAE,UAA6B;QACvC,MAAM,EAAE,QAA2B;QACnC,EAAE,EAAE,IAAuB;QAC3B,KAAK,EAAE,OAA0B;QACjC,SAAS,EAAE,WAA8B;QACzC,MAAM,EAAE,QAA2B;QACnC,UAAU,EAAE,YAA+B;QAC3C,SAAS,EAAE,WAA8B;QACzC,WAAW,EAAE,aAAgC;KAC9C,CAAA;AACH,CAAC,EA5BgB,OAAO,GAAP,eAAO,KAAP,eAAO,QA4BvB","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 */\nimport { Telecom } from './Telecom'\nimport { Annotation } from './Annotation'\nimport { CodeStub } from \"./CodeStub\"\nimport { Identifier } from \"./Identifier\"\n\n/**\n * This entity represents an Address\n */\nexport class Address {\n constructor(json: JSON | any) {\n Object.assign(this as Address, json)\n }\n\n /**\n * A tag is an item from a codification system that qualifies an entity as being member of a certain class, whatever the value it might have taken. If the tag qualifies the content of a field, it means that whatever the content of the field, the tag will always apply.\n */\n tags?: Array<CodeStub>\n /**\n * A code is an item from a codification system that qualifies the content of this entity.\n */\n codes?: Array<CodeStub>\n /**\n * The identifiers of the Address\n */\n identifier?: Array<Identifier>\n\n /**\n * The type of place the address represents, ex: home, office, hospital, clinic, etc.\n */\n addressType?: Address.AddressTypeEnum\n /**\n * Descriptive notes about the address\n */\n descr?: string\n /**\n * Street name\n */\n street?: string\n /**\n * Building / house number\n */\n houseNumber?: string\n /**\n * Post / PO box number\n */\n postboxNumber?: string\n /**\n * Postal/PIN/ZIP/Area code\n */\n postalCode?: string\n /**\n * Name of city in the address\n */\n city?: string\n /**\n * Name of state in the Address\n */\n state?: string\n /**\n * Name / code of country in the address\n */\n country?: string\n /**\n * Additional notes\n * @deprecated replaced by notes\n */\n note?: string\n /**\n * Additional notes\n */\n notes?: Annotation[]\n /**\n * List of other contact details available through telecom services, ex: email, phone number, fax, etc.\n */\n telecoms?: Array<Telecom>\n /**\n * The base64 encoded data of this object, formatted as JSON and encrypted in AES using the random master key from encryptionKeys.\n */\n encryptedSelf?: string\n}\nexport namespace Address {\n export type AddressTypeEnum =\n | 'home'\n | 'work'\n | 'vacation'\n | 'hospital'\n | 'clinic'\n | 'hq'\n | 'other'\n | 'temporary'\n | 'postal'\n | 'diplomatic'\n | 'reference'\n | 'careaddress'\n export const AddressTypeEnum = {\n Home: 'home' as AddressTypeEnum,\n Work: 'work' as AddressTypeEnum,\n Vacation: 'vacation' as AddressTypeEnum,\n Hospital: 'hospital' as AddressTypeEnum,\n Clinic: 'clinic' as AddressTypeEnum,\n Hq: 'hq' as AddressTypeEnum,\n Other: 'other' as AddressTypeEnum,\n Temporary: 'temporary' as AddressTypeEnum,\n Postal: 'postal' as AddressTypeEnum,\n Diplomatic: 'diplomatic' as AddressTypeEnum,\n Reference: 'reference' as AddressTypeEnum,\n Careaddress: 'careaddress' as AddressTypeEnum,\n }\n}\n"]}
|