com.microsoft.azure.keyvault.models.OrganizationDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-keyvault Show documentation
Show all versions of azure-keyvault Show documentation
This package contains Microsoft Azure Key Vault SDK.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.keyvault.models;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Details of the organization of the certificate issuer.
*/
public class OrganizationDetails {
/**
* Id of the organization.
*/
@JsonProperty(value = "id")
private String id;
/**
* Details of the organization administrator.
*/
@JsonProperty(value = "admin_details")
private List adminDetails;
/**
* Get the id value.
*
* @return the id value
*/
public String id() {
return this.id;
}
/**
* Set the id value.
*
* @param id the id value to set
* @return the OrganizationDetails object itself.
*/
public OrganizationDetails withId(String id) {
this.id = id;
return this;
}
/**
* Get the adminDetails value.
*
* @return the adminDetails value
*/
public List adminDetails() {
return this.adminDetails;
}
/**
* Set the adminDetails value.
*
* @param adminDetails the adminDetails value to set
* @return the OrganizationDetails object itself.
*/
public OrganizationDetails withAdminDetails(List adminDetails) {
this.adminDetails = adminDetails;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy