[MM-28218] API hookup for updating company info and address in MM app (#15974)

Этот коммит содержится в:
Devin Binnie
2020-10-20 05:46:58 -04:00
коммит произвёл GitHub
родитель c05ee81c9f
Коммит 73a1c95137
4 изменённых файлов: 128 добавлений и 11 удалений

Просмотреть файл

@@ -14,6 +14,8 @@ type CloudInterface interface {
ConfirmCustomerPayment(*model.ConfirmPaymentMethodRequest) *model.AppError
GetCloudCustomer() (*model.CloudCustomer, *model.AppError)
UpdateCloudCustomer(customerInfo *model.CloudCustomerInfo) (*model.CloudCustomer, *model.AppError)
UpdateCloudCustomerAddress(address *model.Address) (*model.CloudCustomer, *model.AppError)
GetSubscription() (*model.Subscription, *model.AppError)
}