in src/main/java/com/microsoft/store/partnercenter/customers/products/CustomerAvailabilityCollectionByTargetSegmentOperations.java [37:56]
public CustomerAvailabilityCollectionByTargetSegmentOperations(IPartner rootPartnerOperations, String customerId, String productId, String skuId, String targetSegment)
{
super(rootPartnerOperations, new QuadrupleTuple<String, String, String, String>(customerId, productId, skuId, targetSegment));
if (StringHelper.isNullOrWhiteSpace(customerId)) {
throw new IllegalArgumentException("customerId must be set");
}
if (StringHelper.isNullOrWhiteSpace(productId)) {
throw new IllegalArgumentException("productId must be set");
}
if (StringHelper.isNullOrWhiteSpace(skuId)) {
throw new IllegalArgumentException("skuId must be set");
}
if (StringHelper.isNullOrWhiteSpace(targetSegment)) {
throw new IllegalArgumentException("targetSegment must be set");
}
}