Show / Hide Table of Contents

Class LanguageMapping

A natural language mapping.

Inheritance
object
LanguageMapping
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OdaService.Models
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class LanguageMapping

Properties

LanguageTag

Declaration
[Required(ErrorMessage = "LanguageTag is required.")]
[JsonProperty(PropertyName = "languageTag")]
public string LanguageTag { get; set; }
Property Value
Type Description
string

Language tag of mapping.

Remarks

Required

Names

Declaration
[Required(ErrorMessage = "Names is required.")]
[JsonProperty(PropertyName = "names")]
public List<NameMapping> Names { get; set; }
Property Value
Type Description
List<NameMapping>

List of named values for mapping.

Remarks

Required

PrimaryName

Declaration
[Required(ErrorMessage = "PrimaryName is required.")]
[JsonProperty(PropertyName = "primaryName")]
public string PrimaryName { get; set; }
Property Value
Type Description
string

Primary name of mapping.

Remarks

Required

In this article
Back to top