Skip to content

Commit

Permalink
Deploying from phrase/openapi@64d399ce
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Dec 9, 2024
1 parent 7eaeb2a commit c3397ef
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/models/JobCommentCreateParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ export interface JobCommentCreateParameters {
* @memberof JobCommentCreateParameters
*/
message?: string;
/**
* Branch name for the job
* @type {string}
* @memberof JobCommentCreateParameters
*/
branch?: string;
}

export function JobCommentCreateParametersFromJSON(json: any): JobCommentCreateParameters {
Expand All @@ -37,6 +43,7 @@ export function JobCommentCreateParametersFromJSONTyped(json: any, ignoreDiscrim
return {

'message': !exists(json, 'message') ? undefined : json['message'],
'branch': !exists(json, 'branch') ? undefined : json['branch'],
};
}

Expand All @@ -50,6 +57,7 @@ export function JobCommentCreateParametersToJSON(value?: JobCommentCreateParamet
return {

'message': value.message,
'branch': value.branch,
};
}

Expand Down
8 changes: 8 additions & 0 deletions src/models/JobCommentUpdateParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ export interface JobCommentUpdateParameters {
* @memberof JobCommentUpdateParameters
*/
message?: string;
/**
* Branch name for the job
* @type {string}
* @memberof JobCommentUpdateParameters
*/
branch?: string;
}

export function JobCommentUpdateParametersFromJSON(json: any): JobCommentUpdateParameters {
Expand All @@ -37,6 +43,7 @@ export function JobCommentUpdateParametersFromJSONTyped(json: any, ignoreDiscrim
return {

'message': !exists(json, 'message') ? undefined : json['message'],
'branch': !exists(json, 'branch') ? undefined : json['branch'],
};
}

Expand All @@ -50,6 +57,7 @@ export function JobCommentUpdateParametersToJSON(value?: JobCommentUpdateParamet
return {

'message': value.message,
'branch': value.branch,
};
}

Expand Down

0 comments on commit c3397ef

Please sign in to comment.