@@ -951,6 +951,8 @@ export type ModelWithProperties = {
951951 boolean?: boolean;
952952 reference?: ModelWithString;
953953 'property with space'?: string;
954+ default?: string;
955+ try?: string;
954956 readonly '@namespace.string'?: string;
955957 readonly '@namespace.integer'?: number;
956958}
@@ -1630,6 +1632,12 @@ export const $ModelWithProperties = {
16301632 'property with space': {
16311633 type: 'string',
16321634 },
1635+ default: {
1636+ type: 'string',
1637+ },
1638+ try: {
1639+ type: 'string',
1640+ },
16331641 '@namespace.string': {
16341642 type: 'string',
16351643 isReadOnly: true,
@@ -2059,6 +2067,7 @@ export class ParametersService {
20592067 * @param parameterPath1 This is the parameter that goes into the path
20602068 * @param parameterPath2 This is the parameter that goes into the path
20612069 * @param parameterPath3 This is the parameter that goes into the path
2070+ * @param _default This is the parameter with a reserved keyword
20622071 * @throws ApiError
20632072 */
20642073 public static async callWithWeirdParameterNames(
@@ -2069,6 +2078,7 @@ export class ParametersService {
20692078 parameterPath1?: string,
20702079 parameterPath2?: string,
20712080 parameterPath3?: string,
2081+ _default?: string,
20722082 ): Promise<void> {
20732083 const result = await __request({
20742084 method: 'GET',
@@ -3363,6 +3373,8 @@ export type ModelWithProperties = {
33633373 boolean?: boolean;
33643374 reference?: ModelWithString;
33653375 'property with space'?: string;
3376+ default?: string;
3377+ try?: string;
33663378 readonly '@namespace.string'?: string;
33673379 readonly '@namespace.integer'?: number;
33683380}
@@ -4197,6 +4209,12 @@ export const $ModelWithProperties = {
41974209 'property with space': {
41984210 type: 'string',
41994211 },
4212+ default: {
4213+ type: 'string',
4214+ },
4215+ try: {
4216+ type: 'string',
4217+ },
42004218 '@namespace.string': {
42014219 type: 'string',
42024220 isReadOnly: true,
@@ -4697,6 +4715,7 @@ export class ParametersService {
46974715 * @param parameterPath1 This is the parameter that goes into the path
46984716 * @param parameterPath2 This is the parameter that goes into the path
46994717 * @param parameterPath3 This is the parameter that goes into the path
4718+ * @param _default This is the parameter with a reserved keyword
47004719 * @throws ApiError
47014720 */
47024721 public static async callWithWeirdParameterNames(
@@ -4708,6 +4727,7 @@ export class ParametersService {
47084727 parameterPath1?: string,
47094728 parameterPath2?: string,
47104729 parameterPath3?: string,
4730+ _default?: string,
47114731 ): Promise<void> {
47124732 const result = await __request({
47134733 method: 'GET',
0 commit comments