in src/converters/toRpcNullable.ts [68:80]
export function toRpcString(nullable: string | undefined, propertyName: string): string {
if (typeof nullable === 'string') {
return nullable;
}
if (isDefined(nullable)) {
throw new AzFuncSystemError(
`A 'string' type was expected instead of a '${typeof nullable}' type. Cannot parse value of '${propertyName}'.`
);
}
return '';
}