@@ -40,6 +40,67 @@ public partial interface IServiceProviderService : System.IDisposable
4040 ServiceClientCredentials Credentials { get ; }
4141
4242
43+ /// <summary>
44+ /// GetCustomerCatalogItemsPricingInformation (beta)
45+ /// </summary>
46+ /// <param name='customerId'>
47+ /// </param>
48+ /// <param name='body'>
49+ /// </param>
50+ /// <param name='acceptLanguage'>
51+ /// Specify language (and culture) following [RFC 7231, section 5.3.5:
52+ /// Accept-Language].
53+ /// </param>
54+ /// <param name='customHeaders'>
55+ /// The headers that will be added to request.
56+ /// </param>
57+ /// <param name='cancellationToken'>
58+ /// The cancellation token.
59+ /// </param>
60+ Task < HttpOperationResponse < CustomerCatalogItemsPricingInformationDto > > GetCustomerCatalogItemsPricingInformationWithHttpMessagesAsync ( System . Guid customerId , GetCustomerCatalogItemsPricingInformationRequest body = default ( GetCustomerCatalogItemsPricingInformationRequest ) , string acceptLanguage = default ( string ) , Dictionary < string , List < string > > customHeaders = null , CancellationToken cancellationToken = default ( CancellationToken ) ) ;
61+
62+ /// <summary>
63+ /// GetCustomerPlatformsConfigurations (beta)
64+ /// </summary>
65+ /// <remarks>
66+ /// Get the list of all configured platforms for a customer.
67+ /// </remarks>
68+ /// <param name='customerId'>
69+ /// </param>
70+ /// <param name='acceptLanguage'>
71+ /// Specify language (and culture) following [RFC 7231, section 5.3.5:
72+ /// Accept-Language].
73+ /// </param>
74+ /// <param name='customHeaders'>
75+ /// The headers that will be added to request.
76+ /// </param>
77+ /// <param name='cancellationToken'>
78+ /// The cancellation token.
79+ /// </param>
80+ Task < HttpOperationResponse < CustomerConfiguredPlatforms > > GetCustomerPlatformsConfigurationsWithHttpMessagesAsync ( System . Guid customerId , string acceptLanguage = default ( string ) , Dictionary < string , List < string > > customHeaders = null , CancellationToken cancellationToken = default ( CancellationToken ) ) ;
81+
82+ /// <summary>
83+ /// ConfigurePlatforms (beta)
84+ /// </summary>
85+ /// <remarks>
86+ /// Configure platforms required parameters.
87+ /// </remarks>
88+ /// <param name='customerId'>
89+ /// </param>
90+ /// <param name='body'>
91+ /// </param>
92+ /// <param name='acceptLanguage'>
93+ /// Specify language (and culture) following [RFC 7231, section 5.3.5:
94+ /// Accept-Language].
95+ /// </param>
96+ /// <param name='customHeaders'>
97+ /// The headers that will be added to request.
98+ /// </param>
99+ /// <param name='cancellationToken'>
100+ /// The cancellation token.
101+ /// </param>
102+ Task < HttpOperationResponse > ConfigurePlatformsWithHttpMessagesAsync ( System . Guid customerId , ConfigurePlatformsRequest body = default ( ConfigurePlatformsRequest ) , string acceptLanguage = default ( string ) , Dictionary < string , List < string > > customHeaders = null , CancellationToken cancellationToken = default ( CancellationToken ) ) ;
103+
43104 /// <summary>
44105 /// GetCustomers (beta)
45106 /// </summary>
@@ -58,6 +119,72 @@ public partial interface IServiceProviderService : System.IDisposable
58119 /// </param>
59120 Task < HttpOperationResponse < Customers > > GetCustomersWithHttpMessagesAsync ( string acceptLanguage = default ( string ) , Dictionary < string , List < string > > customHeaders = null , CancellationToken cancellationToken = default ( CancellationToken ) ) ;
60121
122+ /// <summary>
123+ /// GetAllPlatforms (beta)
124+ /// </summary>
125+ /// <remarks>
126+ /// Get the list of all available platforms.
127+ /// </remarks>
128+ /// <param name='acceptLanguage'>
129+ /// Specify language (and culture) following [RFC 7231, section 5.3.5:
130+ /// Accept-Language].
131+ /// </param>
132+ /// <param name='customHeaders'>
133+ /// The headers that will be added to request.
134+ /// </param>
135+ /// <param name='cancellationToken'>
136+ /// The cancellation token.
137+ /// </param>
138+ Task < HttpOperationResponse < PlatformsCollection > > GetAllPlatformsWithHttpMessagesAsync ( string acceptLanguage = default ( string ) , Dictionary < string , List < string > > customHeaders = null , CancellationToken cancellationToken = default ( CancellationToken ) ) ;
139+
140+ /// <summary>
141+ /// GetPlatformsForSkus (beta)
142+ /// </summary>
143+ /// <remarks>
144+ /// Get the list of all platforms associated to the provided Skus.
145+ /// Specifying multiple language tags in Accept-Language header will
146+ /// generate translations for each of them.
147+ /// CultureInfo.InvariantCulture ("iv") is used as a fallback when
148+ /// language tags were not provided or not supported.
149+ /// </remarks>
150+ /// <param name='body'>
151+ /// </param>
152+ /// <param name='acceptLanguage'>
153+ /// Specify language (and culture) following [RFC 7231, section 5.3.5:
154+ /// Accept-Language].
155+ /// </param>
156+ /// <param name='customHeaders'>
157+ /// The headers that will be added to request.
158+ /// </param>
159+ /// <param name='cancellationToken'>
160+ /// The cancellation token.
161+ /// </param>
162+ Task < HttpOperationResponse < PlatformsForSkusCollection > > GetPlatformsForSkusWithHttpMessagesAsync ( GetPlatformsForSkusRequest body = default ( GetPlatformsForSkusRequest ) , string acceptLanguage = default ( string ) , Dictionary < string , List < string > > customHeaders = null , CancellationToken cancellationToken = default ( CancellationToken ) ) ;
163+
164+ /// <summary>
165+ /// GetPlatformRequiredParameters (beta)
166+ /// </summary>
167+ /// <remarks>
168+ /// Get the list of required parameters for selected platforms.
169+ /// Specifying multiple language tags in Accept-Language header will
170+ /// generate translations for each of them.
171+ /// CultureInfo.InvariantCulture ("iv") is used as a fallback when
172+ /// language tags were not provided or not supported.
173+ /// </remarks>
174+ /// <param name='body'>
175+ /// </param>
176+ /// <param name='acceptLanguage'>
177+ /// Specify language (and culture) following [RFC 7231, section 5.3.5:
178+ /// Accept-Language].
179+ /// </param>
180+ /// <param name='customHeaders'>
181+ /// The headers that will be added to request.
182+ /// </param>
183+ /// <param name='cancellationToken'>
184+ /// The cancellation token.
185+ /// </param>
186+ Task < HttpOperationResponse < PlatformRequiredParametersCollection > > GetPlatformRequiredParametersWithHttpMessagesAsync ( GetPlatformRequiredParametersRequest body = default ( GetPlatformRequiredParametersRequest ) , string acceptLanguage = default ( string ) , Dictionary < string , List < string > > customHeaders = null , CancellationToken cancellationToken = default ( CancellationToken ) ) ;
187+
61188 /// <summary>
62189 /// GetReceivableCharges (beta)
63190 /// </summary>
0 commit comments