-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
796b60b
commit 59a78a8
Showing
18 changed files
with
842 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
gen/js/chromestatus-openapi/src/models/DismissCueRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* chomestatus API | ||
* The API for chromestatus.com. chromestatus.com is the official tool used for tracking feature launches in Blink (the browser engine that powers Chrome and many other web browsers). This tool guides feature owners through our launch process and serves as a primary source for developer information that then ripples throughout the web developer ecosystem. More details at: https://github.com/GoogleChrome/chromium-dashboard | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface DismissCueRequest | ||
*/ | ||
export interface DismissCueRequest { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof DismissCueRequest | ||
*/ | ||
cue: DismissCueRequestCueEnum; | ||
} | ||
|
||
|
||
/** | ||
* @export | ||
*/ | ||
export const DismissCueRequestCueEnum = { | ||
progress_checkmarks: 'progress-checkmarks' | ||
} as const; | ||
export type DismissCueRequestCueEnum = typeof DismissCueRequestCueEnum[keyof typeof DismissCueRequestCueEnum]; | ||
|
||
|
||
/** | ||
* Check if a given object implements the DismissCueRequest interface. | ||
*/ | ||
export function instanceOfDismissCueRequest(value: object): value is DismissCueRequest { | ||
if (!('cue' in value) || value['cue'] === undefined) return false; | ||
return true; | ||
} | ||
|
||
export function DismissCueRequestFromJSON(json: any): DismissCueRequest { | ||
return DismissCueRequestFromJSONTyped(json, false); | ||
} | ||
|
||
export function DismissCueRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DismissCueRequest { | ||
if (json == null) { | ||
return json; | ||
} | ||
return { | ||
|
||
'cue': json['cue'], | ||
}; | ||
} | ||
|
||
export function DismissCueRequestToJSON(value?: DismissCueRequest | null): any { | ||
if (value == null) { | ||
return value; | ||
} | ||
return { | ||
|
||
'cue': value['cue'], | ||
}; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* chomestatus API | ||
* The API for chromestatus.com. chromestatus.com is the official tool used for tracking feature launches in Blink (the browser engine that powers Chrome and many other web browsers). This tool guides feature owners through our launch process and serves as a primary source for developer information that then ripples throughout the web developer ecosystem. More details at: https://github.com/GoogleChrome/chromium-dashboard | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface ErrorMessage | ||
*/ | ||
export interface ErrorMessage { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ErrorMessage | ||
*/ | ||
error?: string; | ||
} | ||
|
||
/** | ||
* Check if a given object implements the ErrorMessage interface. | ||
*/ | ||
export function instanceOfErrorMessage(value: object): value is ErrorMessage { | ||
return true; | ||
} | ||
|
||
export function ErrorMessageFromJSON(json: any): ErrorMessage { | ||
return ErrorMessageFromJSONTyped(json, false); | ||
} | ||
|
||
export function ErrorMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorMessage { | ||
if (json == null) { | ||
return json; | ||
} | ||
return { | ||
|
||
'error': json['error'] == null ? undefined : json['error'], | ||
}; | ||
} | ||
|
||
export function ErrorMessageToJSON(value?: ErrorMessage | null): any { | ||
if (value == null) { | ||
return value; | ||
} | ||
return { | ||
|
||
'error': value['error'], | ||
}; | ||
} | ||
|
Oops, something went wrong.