public CustomerAvailabilityOperations()

in src/main/java/com/microsoft/store/partnercenter/customers/products/CustomerAvailabilityOperations.java [33:56]


	public CustomerAvailabilityOperations(IPartner rootPartnerOperations, String customerId, String productId, String skuId, String availabilityId)
	{
		super(rootPartnerOperations, new QuadrupleTuple<String, String, String, String>(customerId, productId, skuId, availabilityId));

		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(availabilityId))
		{
			throw new IllegalArgumentException("availabilityId must be set");
		}
	}