Name: GeneralName

GeneralName is used to represent an entry of Subject Alternative Name in X509 certificate. The nameType property is an integer that indicates the type of the nameValue property. Please refer to RFC 3280 for details.
 Possible nameType values:
 
   0 - otherName
   1 - rfc822Name (email)
   2 - dSName (hostname)
   3 - x400Address
   4 - directoryName
   5 - ediPartyName
   6 - uniformResourceIdentfier (URI)
   7 - iPAddress
   8 - regiseredID
 

Data Structure
{
   "typeId": "com.tintri.api.rest.v310.dto.domain.beans.GeneralName",
   "nameType": <Number>,
   "nameValue": <String>,
}

Attributes
NameTypeDescription
nameTypexsd:intThe type of the name.
nameValuexsd:stringThe value of the name.