com.microsoft.store.partnercenter.models.utils.QuadrupleTuple 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.
// Licensed under the MIT license. See the LICENSE file in the project root for full license information.
package com.microsoft.store.partnercenter.models.utils;
public class QuadrupleTuple
{
private T1 item1;
private T2 item2;
private T3 item3;
private T4 item4;
public QuadrupleTuple(T1 item1, T2 item2, T3 item3, T4 item4)
{
this.item1 = item1;
this.item2 = item2;
this.item3 = item3;
this.item4 = item4;
}
public T1 getItem1()
{
return item1;
}
public void setItem1(T1 item1)
{
this.item1 = item1;
}
public T2 getItem2()
{
return item2;
}
public void setItem2(T2 item2)
{
this.item2 = item2;
}
public T3 getItem3()
{
return item3;
}
public void setItem3(T3 item3)
{
this.item3 = item3;
}
public T4 getItem4()
{
return item4;
}
public void setItem4(T4 item4)
{
this.item4 = item4;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy