com.google.api.services.cloudcontrolspartner.v1.model.Customer Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.cloudcontrolspartner.v1.model;
/**
* Contains metadata around a Cloud Controls Partner Customer
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Controls Partner API. For a detailed
* explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class Customer extends com.google.api.client.json.GenericJson {
/**
* Output only. Container for customer onboarding steps
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private CustomerOnboardingState customerOnboardingState;
/**
* Optional. The customer organization's display name. E.g. "Google".
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String displayName;
/**
* Output only. Indicates whether a customer is fully onboarded
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean isOnboarded;
/**
* Identifier. Format: `organizations/{organization}/locations/{location}/customers/{customer}`
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;
/**
* Output only. Container for customer onboarding steps
* @return value or {@code null} for none
*/
public CustomerOnboardingState getCustomerOnboardingState() {
return customerOnboardingState;
}
/**
* Output only. Container for customer onboarding steps
* @param customerOnboardingState customerOnboardingState or {@code null} for none
*/
public Customer setCustomerOnboardingState(CustomerOnboardingState customerOnboardingState) {
this.customerOnboardingState = customerOnboardingState;
return this;
}
/**
* Optional. The customer organization's display name. E.g. "Google".
* @return value or {@code null} for none
*/
public java.lang.String getDisplayName() {
return displayName;
}
/**
* Optional. The customer organization's display name. E.g. "Google".
* @param displayName displayName or {@code null} for none
*/
public Customer setDisplayName(java.lang.String displayName) {
this.displayName = displayName;
return this;
}
/**
* Output only. Indicates whether a customer is fully onboarded
* @return value or {@code null} for none
*/
public java.lang.Boolean getIsOnboarded() {
return isOnboarded;
}
/**
* Output only. Indicates whether a customer is fully onboarded
* @param isOnboarded isOnboarded or {@code null} for none
*/
public Customer setIsOnboarded(java.lang.Boolean isOnboarded) {
this.isOnboarded = isOnboarded;
return this;
}
/**
* Identifier. Format: `organizations/{organization}/locations/{location}/customers/{customer}`
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}
/**
* Identifier. Format: `organizations/{organization}/locations/{location}/customers/{customer}`
* @param name name or {@code null} for none
*/
public Customer setName(java.lang.String name) {
this.name = name;
return this;
}
@Override
public Customer set(String fieldName, Object value) {
return (Customer) super.set(fieldName, value);
}
@Override
public Customer clone() {
return (Customer) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy