Skip to content
New issue

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

Follow-up solvedac/unofficial-documentation #25

Merged
merged 1 commit into from
Nov 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions dist/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,12 @@ export interface InlineResponse200 {
* @memberof InlineResponse200
*/
user?: User & object;
/**
* 해당 계정의 사용자가 푼 문제 정보입니다.
* @type {Array<InlineResponse200Solved>}
* @memberof InlineResponse200
*/
solved?: Array<InlineResponse200Solved>;
}
/**
*
Expand Down Expand Up @@ -735,6 +741,26 @@ export interface InlineResponse2009 {
*/
items?: Array<Organization>;
}
/**
*
* @export
* @interface InlineResponse200Solved
*/
export interface InlineResponse200Solved {
/**
* 문제 ID입니다.
* @type {number}
* @memberof InlineResponse200Solved
*/
id?: number;
/**
* 현재 문제 풀이 상태입니다. 알려진 값은 다음이 있습니다.
* `"solved"`, `"tried"`
* @type {string}
* @memberof InlineResponse200Solved
*/
status?: string;
}
/**
* 언어입니다.
* @export
Expand Down
26 changes: 26 additions & 0 deletions src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,12 @@ export interface InlineResponse200 {
* @memberof InlineResponse200
*/
user?: User & object;
/**
* 해당 계정의 사용자가 푼 문제 정보입니다.
* @type {Array<InlineResponse200Solved>}
* @memberof InlineResponse200
*/
solved?: Array<InlineResponse200Solved>;
}
/**
*
Expand Down Expand Up @@ -737,6 +743,26 @@ export interface InlineResponse2009 {
*/
items?: Array<Organization>;
}
/**
*
* @export
* @interface InlineResponse200Solved
*/
export interface InlineResponse200Solved {
/**
* 문제 ID입니다.
* @type {number}
* @memberof InlineResponse200Solved
*/
id?: number;
/**
* 현재 문제 풀이 상태입니다. 알려진 값은 다음이 있습니다.
* `"solved"`, `"tried"`
* @type {string}
* @memberof InlineResponse200Solved
*/
status?: string;
}
/**
* 언어입니다.
* @export
Expand Down
26 changes: 26 additions & 0 deletions src/models/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,12 @@ export interface InlineResponse200 {
* @memberof InlineResponse200
*/
user?: User & object;
/**
* 해당 계정의 사용자가 푼 문제 정보입니다.
* @type {Array<InlineResponse200Solved>}
* @memberof InlineResponse200
*/
solved?: Array<InlineResponse200Solved>;
}
/**
*
Expand Down Expand Up @@ -737,6 +743,26 @@ export interface InlineResponse2009 {
*/
items?: Array<Organization>;
}
/**
*
* @export
* @interface InlineResponse200Solved
*/
export interface InlineResponse200Solved {
/**
* 문제 ID입니다.
* @type {number}
* @memberof InlineResponse200Solved
*/
id?: number;
/**
* 현재 문제 풀이 상태입니다. 알려진 값은 다음이 있습니다.
* `"solved"`, `"tried"`
* @type {string}
* @memberof InlineResponse200Solved
*/
status?: string;
}
/**
* 언어입니다.
* @export
Expand Down