Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessGetPublicPricesByPriceResponseContent(
PrepareGetPublicPricesByPriceRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
price: price,
price: price!,
lang: lang);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ partial void ProcessGetPublicStreamingGetLinkResponseContent(
PrepareGetPublicStreamingGetLinkRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
playlistIndex: playlistIndex,
playlistIndex: playlistIndex!,
bitrate: bitrate,
intensity: intensity,
type: type);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ partial void ProcessGetPublicTracksByTrackResponseContent(
PrepareGetPublicTracksByTrackRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
track: track);
track: track!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ partial void ProcessGetPublicTracksSessionBySessionIdResponseContent(
PrepareGetPublicTracksSessionBySessionIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
track: track,
sessionId: sessionId);
track: track!,
sessionId: sessionId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ partial void ProcessPostPublicTracksByTrackEditResponseContent(
PreparePostPublicTracksByTrackEditRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
track: track,
track: track!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ partial void ProcessPostPublicTracksByTrackSimilarResponseContent(
PreparePostPublicTracksByTrackSimilarRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
track: track,
track: track!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessDeleteServiceCustomersByCustomerResponse(
PrepareDeleteServiceCustomersByCustomerRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
customer: customer,
customer: customer!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ partial void ProcessGetServiceCustomersByCustomerResponseContent(
PrepareGetServiceCustomersByCustomerRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
customer: customer);
customer: customer!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ partial void ProcessGetServiceCustomersCustomIdByCustomidResponseContent(
PrepareGetServiceCustomersCustomIdByCustomidRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
customId: customId);
customId: customId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ partial void ProcessGetServiceLicensesByLicenseResponseContent(
PrepareGetServiceLicensesByLicenseRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
license: license);
license: license!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ partial void ProcessPutServiceCustomersByCustomerResponseContent(
PreparePutServiceCustomersByCustomerRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
customer: customer,
customer: customer!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ partial void ProcessPutServiceLicensesByLicenseResponseContent(
PreparePutServiceLicensesByLicenseRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
license: license,
license: license!,
request: request);

return __httpRequest;
Expand Down