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

com.vmware.connectors.concur.domain.PendingApprovalResponse Maven / Gradle / Ivy

The newest version!
/*
 * Copyright © 2019 VMware, Inc. All Rights Reserved.
 * SPDX-License-Identifier: BSD-2-Clause
 */

package com.vmware.connectors.concur.domain;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class PendingApprovalResponse {

    private List items;

    @JsonProperty("Items")
    public List getPendingApprovals() {
        return items;
    }

    public void setPendingApprovals(List pendingApprovals) {
        this.items = pendingApprovals;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy