Show / Hide Table of Contents

Class DeidentifyConfig

Configures de-id options specific to different types of content. Each submessage customizes the handling of an https://tools.ietf.org/html/rfc6838 media type or subtype. Configs are applied in a nested manner at runtime.

Inheritance
System.Object
DeidentifyConfig
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudHealthcare.v1.Data
Assembly: Google.Apis.CloudHealthcare.v1.dll
Syntax
public class DeidentifyConfig : IDirectResponseSchema

Properties

Dicom

Configures de-id of application/DICOM content.

Declaration
[JsonProperty("dicom")]
public virtual DicomConfig Dicom { get; set; }
Property Value
Type Description
DicomConfig

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Fhir

Configures de-id of application/FHIR content.

Declaration
[JsonProperty("fhir")]
public virtual FhirConfig Fhir { get; set; }
Property Value
Type Description
FhirConfig

Image

Configures de-identification of image pixels wherever they are found in the source_dataset.

Declaration
[JsonProperty("image")]
public virtual ImageConfig Image { get; set; }
Property Value
Type Description
ImageConfig

Text

Configures de-identification of text wherever it is found in the source_dataset.

Declaration
[JsonProperty("text")]
public virtual TextConfig Text { get; set; }
Property Value
Type Description
TextConfig

Implements

IDirectResponseSchema
Back to top