All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softlayer.api.service.container.authentication.response.AccountIdMissing Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api.service.container.authentication.response;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.container.authentication.response.Common;

/**
 * The SoftLayer_Container_Authentication_Response_AccountIdMissing data type contains information for specific responses from the getPortalLogin API. This class is indicative of a request that is missing the account id. 
 *
 * @see SoftLayer_Container_Authentication_Response_AccountIdMissing
 */
@ApiType("SoftLayer_Container_Authentication_Response_AccountIdMissing")
public class AccountIdMissing extends Common {

    @ApiProperty(canBeNullOrNotSet = true)
    protected String statusKeyName;

    public String getStatusKeyName() {
        return statusKeyName;
    }

    public void setStatusKeyName(String statusKeyName) {
        statusKeyNameSpecified = true;
        this.statusKeyName = statusKeyName;
    }

    protected boolean statusKeyNameSpecified;

    public boolean isStatusKeyNameSpecified() {
        return statusKeyNameSpecified;
    }

    public void unsetStatusKeyName() {
        statusKeyName = null;
        statusKeyNameSpecified = false;
    }

    public static class Mask extends Common.Mask {

        public Mask statusKeyName() {
            withLocalProperty("statusKeyName");
            return this;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy