All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.social.partnercenter.api.customer.CustomerOperations Maven / Gradle / Ivy

Go to download

A provider extension for Spring Social to enable connectivity with Microsoft and an API binding for Microsoft's Partner Center API.

There is a newer version: 10.11.0
Show newest version
package org.springframework.social.partnercenter.api.customer;

import org.springframework.http.ResponseEntity;
import org.springframework.social.partnercenter.api.PagingResourceOperations;
import org.springframework.social.partnercenter.api.PartnerCenterResponse;
import org.springframework.social.partnercenter.api.order.subscription.Subscription;

public interface CustomerOperations extends PagingResourceOperations{
	ResponseEntity create(Customer customer);
    ResponseEntity getById(String tenantId);
	ResponseEntity> getCompanyByDomain(int size, String filter);
	ResponseEntity> getCompanyByCompanyName(int size, String filter);
	ResponseEntity> getList(int size);
	ResponseEntity getCustomersCompanyProfile(String customerId);
    ResponseEntity updateFriendlyName(String customerTenantId, String subscriptionId, String nickname);
	ResponseEntity getBillingProfile(String customerTenantId);
	ResponseEntity updateBillingProfile(String customerTenantId, String etag, CustomerBillingProfile billingProfile);
	ResponseEntity> subscribedSkus(String customerId);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy