src/main/java/com/microsoft/store/partnercenter/carts/CartOperations.java [68:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public Cart get() 
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<Cart>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetCart").getPath(),
				this.getContext().getItem1(), 
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/customers/products/CustomerProductOperations.java [55:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public Product get()
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<Product>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetCustomerProduct").getPath(),
				this.getContext().getItem1(),
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/customers/servicecosts/ServiceCostSummaryOperations.java [44:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public ServiceCostsSummary get()
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<ServiceCostsSummary>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetCustomerServiceCostsSummary").getPath(),
				this.getContext().getItem1(), 
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/customerusers/CustomerUserOperations.java [61:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public CustomerUser get() 
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<CustomerUser>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetCustomerUserDetails").getPath(),
				this.getContext().getItem1(), 
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/devicesdeployment/BatchJobStatusOperations.java [46:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public BatchUploadDetails get() 
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<BatchUploadDetails>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetBatchUploadStatus").getPath(),
				this.getContext().getItem1(),
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/devicesdeployment/ConfigurationPolicyOperations.java [46:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public ConfigurationPolicy get() 
    {
        return this.getPartner().getServiceClient().get(
            this.getPartner(),
            new TypeReference<ConfigurationPolicy>(){}, 
            MessageFormat.format(
                PartnerService.getInstance().getConfiguration().getApis().get("GetConfigurationPolicy").getPath(),
                this.getContext().getItem1(), 
                this.getContext().getItem2()));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/servicerequests/CustomerServiceRequestOperations.java [52:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public ServiceRequest get()
    {
        return this.getPartner().getServiceClient().get(
            this.getPartner(),
            new TypeReference<ServiceRequest>(){}, 
            MessageFormat.format(
                PartnerService.getInstance().getConfiguration().getApis().get("GetServiceRequestCustomer").getPath(),
                this.getContext().getItem1(), 
                this.getContext().getItem2()));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/subscriptions/SubscriptionOperations.java [303:312]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Subscription get()
    {
        return this.getPartner().getServiceClient().get(
            this.getPartner(),
            new TypeReference<Subscription>(){}, 
            MessageFormat.format(
                PartnerService.getInstance().getConfiguration().getApis().get("GetSubscription").getPath(),
                this.getContext().getItem1(), 
                this.getContext().getItem2()));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/subscriptions/SubscriptionProvisioningStatusOperations.java [50:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public SubscriptionProvisioningStatus get()
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<SubscriptionProvisioningStatus>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetSubscriptionProvisioningStatus").getPath(),
				this.getContext().getItem1(),
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/subscriptions/SubscriptionRegistrationStatusOperations.java [50:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public SubscriptionRegistrationStatus get()
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<SubscriptionRegistrationStatus>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetSubscriptionRegistrationStatus").getPath(),
				this.getContext().getItem1(),
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/subscriptions/SubscriptionSupportContactOperations.java [50:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public SupportContact get()
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<SupportContact>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetSubscriptionSupportContact").getPath(),
				this.getContext().getItem1(), 
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/usage/SubscriptionUsageSummaryOperations.java [52:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public SubscriptionUsageSummary get()
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference<SubscriptionUsageSummary>(){}, 
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetSubscriptionUsageSummary").getPath(),
				this.getContext().getItem1(),
				this.getContext().getItem2()));
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



