Skip to content

Commit

Permalink
Follow-up solvedac/unofficial-documentation (#25)
Browse files Browse the repository at this point in the history
Co-authored-by: RanolP <[email protected]>
  • Loading branch information
github-actions[bot] and RanolP authored Nov 25, 2021
1 parent 3e72a0b commit e68d01c
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 0 deletions.
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

0 comments on commit e68d01c

Please sign in to comment.