RfcToBeSerializer suitable for displaying full details of a single instance
| Name | Type |
|---|---|
title |
string |
_abstract |
string |
group |
string |
disposition |
string |
externalDeadline |
Date |
internalGoal |
Date |
labels |
Array<number> |
submittedFormat |
string |
pages |
number |
keywords |
string |
boilerplate |
string |
stdLevel |
string |
publicationStdLevel |
string |
stream |
string |
publicationStream |
string |
authors |
Array<RfcAuthorRequest> |
shepherdId |
number |
iesgContactId |
number |
rfcNumber |
number |
consensus |
boolean |
ianaStatusSlug |
IanaStatusSlugEnum |
repository |
string |
streamManagerId |
number |
import type { RfcToBeRequest } from ''
// TODO: Update the object below with actual values
const example = {
"title": null,
"_abstract": null,
"group": null,
"disposition": null,
"externalDeadline": null,
"internalGoal": null,
"labels": null,
"submittedFormat": null,
"pages": null,
"keywords": null,
"boilerplate": null,
"stdLevel": null,
"publicationStdLevel": null,
"stream": null,
"publicationStream": null,
"authors": null,
"shepherdId": null,
"iesgContactId": null,
"rfcNumber": null,
"consensus": null,
"ianaStatusSlug": null,
"repository": null,
"streamManagerId": null,
} satisfies RfcToBeRequest
console.log(example)
// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)
// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as RfcToBeRequest
console.log(exampleParsed)[Back to top] [Back to API list] [Back to Model list] [Back to README]