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

com.microsoft.store.partnercenter.models.ResourceCollection Maven / Gradle / Ivy

There is a newer version: 1.15.3
Show newest version
// -----------------------------------------------------------------------
// 
//      Copyright (c) Microsoft Corporation. All rights reserved.
// 
// -----------------------------------------------------------------------

package com.microsoft.store.partnercenter.models;

import java.util.List;

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

/**
 * Contains a collection of resources with JSON properties to represent the output Type of objects in collection
 */
public class ResourceCollection
    extends ResourceCollectionWithLinks
{

    /**
     * Initializes a new instance of the ResourceCollection class.
     * 
     * @param items The items.
     */
    @JsonCreator
    public ResourceCollection(@JsonProperty("items") List items )
    {
        super( items );
    }

    /**
     * Initializes a new instance of the ResourceCollection class.
     * 
     * @param resourceCollection The resource collection.
     */
    protected ResourceCollection( ResourceCollection resourceCollection )
    {
    	super(resourceCollection);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy