We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A lot or all fields are marked with ? stating that they could be undefined even though the aren't:
?
export interface PullRequestDTO { id?: number; title?: string; url?: string; state?: PullRequestDTO.StateEnum; createdAt?: string; updatedAt?: string; mergedAt?: string; author?: UserDTO; comments?: Set<IssueCommentDTO>; repository?: RepositoryDTO; } export namespace PullRequestDTO { export type StateEnum = 'CLOSED' | 'OPEN'; export const StateEnum = { Closed: 'CLOSED' as StateEnum, Open: 'OPEN' as StateEnum }; }
Most of the fields are actually defined and therefore should not be optional in the OpenAPI specs
The text was updated successfully, but these errors were encountered:
Closed by #116
Sorry, something went wrong.
No branches or pull requests
Current
A lot or all fields are marked with
?
stating that they could be undefined even though the aren't:Expected
Most of the fields are actually defined and therefore should not be optional in the OpenAPI specs
The text was updated successfully, but these errors were encountered: