createUrl

open fun createUrl(pathTemplate: String, pathParameters: Map<String, Any?> = emptyMap(), queryParameters: Map<String, Any?> = emptyMap(), ignorePathParameters: Boolean = false): String

Create a complete url based on the baseUrl and given parameters. Uses UrlBuilder to create the path from the pathTemplate and pathParameters.

When ignorePathParameters is true, the pathParameters will be ignored and pathTemplate will not be parsed.