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

com.adobe.target.delivery.v1.model.CustomerId Maven / Gradle / Ivy

There is a newer version: 2.6.1
Show newest version
/*
 * Copyright 2019 Adobe. All rights reserved.
 * This file is licensed to you 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 REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * NOTE: This is an auto generated file. Do not edit directly.
 */
package com.adobe.target.delivery.v1.model;


import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.Objects;


/**
 * CustomerId
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class CustomerId {
    @JsonProperty("id")
    private String id;

    @JsonProperty("integrationCode")
    private String integrationCode;

    @JsonProperty("authenticatedState")
    private AuthenticatedState authenticatedState = null;

    public CustomerId id(String id) {
        this.id = id;
        return this;
    }

    /**
     * Get id
     *
     * @return id
     **/

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public CustomerId integrationCode(String integrationCode) {
        this.integrationCode = integrationCode;
        return this;
    }

    /**
     * This is the **alias** used when setting up a CRS datasource in the Marketing Cloud UI.
     *
     * @return integrationCode
     **/

    public String getIntegrationCode() {
        return integrationCode;
    }

    public void setIntegrationCode(String integrationCode) {
        this.integrationCode = integrationCode;
    }

    public CustomerId authenticatedState(AuthenticatedState authenticatedState) {
        this.authenticatedState = authenticatedState;
        return this;
    }

    /**
     * Get authenticatedState
     *
     * @return authenticatedState
     **/

    public AuthenticatedState getAuthenticatedState() {
        return authenticatedState;
    }

    public void setAuthenticatedState(AuthenticatedState authenticatedState) {
        this.authenticatedState = authenticatedState;
    }


    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        CustomerId customerId = (CustomerId) o;
        return Objects.equals(this.id, customerId.id) &&
                Objects.equals(this.integrationCode, customerId.integrationCode) &&
                Objects.equals(this.authenticatedState, customerId.authenticatedState);
    }

    @Override
    public int hashCode() {
        return Objects.hash(id, integrationCode, authenticatedState);
    }


    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class CustomerId {\n");
        sb.append("    id: ").append(toIndentedString(id)).append("\n");
        sb.append("    integrationCode: ").append(toIndentedString(integrationCode)).append("\n");
        sb.append("    authenticatedState: ").append(toIndentedString(authenticatedState)).append("\n");
        sb.append("}");
        return sb.toString();
    }

    /**
     * Convert the given object to string with each line indented by 4 spaces
     * (except the first line).
     */
    private String toIndentedString(Object o) {
        if (o == null) {
            return "null";
        }
        return o.toString().replace("\n", "\n    ");
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy