| GET | /sales/packages/{PackageId}/installments | Get sales package installments |
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class GetSalesPackageDiscountsRequest extends GetSalesPackageInstallmentsDto implements IRestrictedApiRequest
{
/**
* IP address of the end user
*/
@ApiMember(Description="IP address of the end user", Name="X-Forwarded-For", ParameterType="header")
public String XForwardedFor = null;
/**
* Api Key - grants access to resources
*/
@ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")
public String ApiKey = null;
/**
* ID # of store to get package plans for
*/
@ApiMember(DataType="string", Description="ID # of store to get package plans for", IsRequired=true, Name="StoreId", ParameterType="query")
public Integer StoreId = null;
/**
* ID # of package to get installment plans for
*/
@ApiMember(DataType="string", Description="ID # of package to get installment plans for", IsRequired=true, Name="PackageId", ParameterType="path")
public Integer PackageId = null;
public Integer RestrictedId = null;
public RestrictedResourceType RestrictedResourceType = null;
public String getXForwardedFor() { return XForwardedFor; }
public GetSalesPackageDiscountsRequest setXForwardedFor(String value) { this.XForwardedFor = value; return this; }
public String getApiKey() { return ApiKey; }
public GetSalesPackageDiscountsRequest setApiKey(String value) { this.ApiKey = value; return this; }
public Integer getStoreId() { return StoreId; }
public GetSalesPackageDiscountsRequest setStoreId(Integer value) { this.StoreId = value; return this; }
public Integer getPackageId() { return PackageId; }
public GetSalesPackageDiscountsRequest setPackageId(Integer value) { this.PackageId = value; return this; }
public Integer getRestrictedId() { return RestrictedId; }
public GetSalesPackageDiscountsRequest setRestrictedId(Integer value) { this.RestrictedId = value; return this; }
public RestrictedResourceType getRestrictedResourceType() { return RestrictedResourceType; }
public GetSalesPackageDiscountsRequest setRestrictedResourceType(RestrictedResourceType value) { this.RestrictedResourceType = value; return this; }
}
public static class GetSalesPackageInstallmentsDto extends ApiDtoBase
{
public Integer PackageId = null;
public Integer getPackageId() { return PackageId; }
public GetSalesPackageInstallmentsDto setPackageId(Integer value) { this.PackageId = value; return this; }
}
public static class ApiDtoBase implements IApiDtoBase
{
public String ApiKey = null;
public Integer StoreId = null;
public Integer ChainId = null;
public String getApiKey() { return ApiKey; }
public ApiDtoBase setApiKey(String value) { this.ApiKey = value; return this; }
public Integer getStoreId() { return StoreId; }
public ApiDtoBase setStoreId(Integer value) { this.StoreId = value; return this; }
public Integer getChainId() { return ChainId; }
public ApiDtoBase setChainId(Integer value) { this.ChainId = value; return this; }
}
public static enum RestrictedResourceType
{
Store,
Chain,
User,
Undefined;
}
}
Java GetSalesPackageDiscountsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /sales/packages/{PackageId}/installments HTTP/1.1
Host: www.clubready.com
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<ArrayOfSalesPackageInstallmentPlanResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClubReady.Core.Api.Models">
<SalesPackageInstallmentPlanResponse>
<DuePerPayment>String</DuePerPayment>
<Fees>
<PackageFee>
<Amount>String</Amount>
<CanBeWaived>false</CanBeWaived>
<CanDuplicate>false</CanDuplicate>
<DueUpfront>false</DueUpfront>
<Name>String</Name>
<OneTime>false</OneTime>
<PayFrequencyMonths>0</PayFrequencyMonths>
<Taxable>false</Taxable>
</PackageFee>
</Fees>
<ForOnlineSale>false</ForOnlineSale>
<Id>0</Id>
<PaymentCount>0</PaymentCount>
</SalesPackageInstallmentPlanResponse>
</ArrayOfSalesPackageInstallmentPlanResponse>