* updated samples for SOE and modern AVS changes. Successful build dependent upon release of new version of Partner Center SDK.

* removed examples for synchronous qualification APIs

* resolving build errors and updating package

* addressed nit

Co-authored-by: Gaurav Karna <gauravkarna@microsoft.com>
This commit is contained in:
Gaurav Karna 2021-07-08 09:46:08 -07:00 коммит произвёл GitHub
Родитель 92c645d576
Коммит 7e0645b3c1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -33,11 +33,11 @@ namespace Microsoft.Store.PartnerCenter.Samples.Customers
this.Context.ConsoleHelper.StartProgress("Creating customer qualification");
/* This variable can be set to any allowed qualification, for example:
* (1) "education"
* (1) "Education"
* (2) "GovernmentCommunityCloud" <- this has to be paired with a ValidationCode, see sample in "CreateCustomerQualificationWithGCC.cs"
* (3) "StateOwnedEntity"
*/
var qualificationToCreate = "education";
var qualificationToCreate = "Education";
var customerQualification = new Models.Customers.V2.CustomerQualification { Qualification = qualificationToCreate };