class Azure::KeyVault::V7_0::Models::OrganizationDetails
Details of the organization of the certificate issuer.
Attributes
admin_details[RW]
@return [Array<AdministratorDetails>] Details of the organization administrator.
id[RW]
@return [String] Id of the organization.
Public Class Methods
mapper()
click to toggle source
Mapper for OrganizationDetails
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/7.0/generated/azure_key_vault/models/organization_details.rb, line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OrganizationDetails', type: { name: 'Composite', class_name: 'OrganizationDetails', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, admin_details: { client_side_validation: true, required: false, serialized_name: 'admin_details', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'AdministratorDetailsElementType', type: { name: 'Composite', class_name: 'AdministratorDetails' } } } } } } } end