Class ProjectsResource.LocationsResource.DatasetsResource.FhirStoresResource.FhirResource.ConceptMapSearchTranslateRequest
Translates a code from one value set to another by searching for appropriate concept maps.
Implements the FHIR standard $translate operation
(DSTU2,
STU3,
R4). On success, the
response body contains a JSON-encoded representation of a FHIR Parameters resource, which
includes the translation result. Errors generated by the FHIR store contain a JSON-encoded
OperationOutcome
resource describing the reason for the error. If the request cannot be
mapped to a valid API method on a FHIR store, a generic GCP error might be returned instead.
Inheritance
Inherited Members
Namespace: Google.Apis.CloudHealthcare.v1beta1
Assembly: Google.Apis.CloudHealthcare.v1beta1.dll
Syntax
public class ProjectsResource.LocationsResource.DatasetsResource.FhirStoresResource.FhirResource.ConceptMapSearchTranslateRequest : CloudHealthcareBaseServiceRequest<HttpBody>, IClientServiceRequest<HttpBody>, IClientServiceRequest
Constructors
ConceptMapSearchTranslateRequest(IClientService, string)
Constructs a new ConceptMapSearchTranslate request.
Declaration
public ConceptMapSearchTranslateRequest(IClientService service, string parent)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | parent |
Properties
Code
Required. The code to translate.
Declaration
[RequestParameter("code", RequestParameterType.Query)]
public virtual string Code { get; set; }
Property Value
Type | Description |
---|---|
string |
ConceptMapVersion
The version of the concept map to use. If unset, the most current version is used.
Declaration
[RequestParameter("conceptMapVersion", RequestParameterType.Query)]
public virtual string ConceptMapVersion { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Parent
Required. The name for the FHIR store containing the concept map(s) to use for the translation.
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Source
The source value set of the concept map to be used. If unset, target is used to search for concept maps.
Declaration
[RequestParameter("source", RequestParameterType.Query)]
public virtual string Source { get; set; }
Property Value
Type | Description |
---|---|
string |
System
Required. The system for the code to be translated.
Declaration
[RequestParameter("system", RequestParameterType.Query)]
public virtual string System { get; set; }
Property Value
Type | Description |
---|---|
string |
Target
The target value set of the concept map to be used. If unset, source is used to search for concept maps.
Declaration
[RequestParameter("target", RequestParameterType.Query)]
public virtual string Target { get; set; }
Property Value
Type | Description |
---|---|
string |
Url
The canonical url of the concept map to use. If unset, the source and target is used to search for concept maps.
Declaration
[RequestParameter("url", RequestParameterType.Query)]
public virtual string Url { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
InitParameters()
Initializes ConceptMapSearchTranslate parameter list.
Declaration
protected override void InitParameters()