com.microsoft.store.partnercenter.models.ResourceCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partnercenter Show documentation
Show all versions of partnercenter Show documentation
SDK for accessing Microsoft Partner Center API.
// -----------------------------------------------------------------------
//
// 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