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

com.ifountain.opsgenie.client.model.user.GetUserResponse Maven / Gradle / Ivy

package com.ifountain.opsgenie.client.model.user;

import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.ifountain.opsgenie.client.model.BaseResponse;
import com.ifountain.opsgenie.client.model.beans.User;

/**
 * Represents OpsGenie service response for get user request.
 *
 * @see com.ifountain.opsgenie.client.IUserOpsGenieClient#getUser(GetUserRequest)
 */
public class GetUserResponse extends BaseResponse {
    @JsonUnwrapped
    private User user;

    /**
     * Details of user
     *
     * @see User
     */
    public User getUser() {
        return user;
    }

    /**
     * Sets details of user
     *
     * @see User
     */
    public void setUser(User user) {
        this.user = user;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy