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

com.klarna.rest.api.checkout.model.emd.CustomerAccountInformation Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2018 Klarna AB
 *
 * 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.
 */

package com.klarna.rest.api.checkout.model.emd;

import org.threeten.bp.OffsetDateTime;

/**
 * The model for customer account information.
 */
public class CustomerAccountInformation extends Model {
    /**
     * Unique account identifier.
     */
    private String uniqueAccountIdentifier;

    /**
     * Account registration date.
     */
    private OffsetDateTime accountRegistrationDate;

    /**
     * Account last modified date.
     */
    private OffsetDateTime accountLastModified;

    /**
     * Get the unique account identifier.
     *
     * @return Same instance.
     */
    public String getUniqueAccountIdentifier() {
        return this.uniqueAccountIdentifier;
    }

    /**
     * Set the unique account identifier.
     *
     * @param uniqueAccountIdentifier Unique account identifier.
     * @return Same instance.
     */
    public CustomerAccountInformation setUniqueAccountIdentifier(
            final String uniqueAccountIdentifier) {
        this.uniqueAccountIdentifier = uniqueAccountIdentifier;

        return this;
    }

    /**
     * Get the account registration date.
     *
     * @return Account registration date.
     */
    public OffsetDateTime getAccountRegistrationDate() {
        return this.accountRegistrationDate;
    }

    /**
     * Set the account registration date.
     *
     * @param accountRegistrationDate Account registration date.
     * @return Same instance.
     */
    public CustomerAccountInformation setAccountRegistrationDate(
            final OffsetDateTime accountRegistrationDate) {
        this.accountRegistrationDate = accountRegistrationDate;

        return this;
    }

    /**
     * Get account last modified date.
     *
     * @return Account last modified date.
     */
    public OffsetDateTime getAccountLastModified() {
        return this.accountLastModified;
    }

    /**
     * Set the account last modified date.
     *
     * @param accountLastModified Account last modified date.
     * @return Same account
     */
    public CustomerAccountInformation setAccountLastModified(
            final OffsetDateTime accountLastModified) {
        this.accountLastModified = accountLastModified;

        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy