Skip to content
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
2 changes: 2 additions & 0 deletions src/api/openapi/docs/GroupStudyBasicInfoResponseDto.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**groupStudyId** | **number** | 그룹스터디 ID | [optional] [default to undefined]
**classification** | **string** | 스터디 분류 | [optional] [default to undefined]
**leader** | [**StudyReservationMemberDto**](StudyReservationMemberDto.md) | 그룹스터디 리더 정보 | [optional] [default to undefined]
**studyLeaderParticipation** | **boolean** | 스터디 리더 참가 여부 | [optional] [default to undefined]
**type** | **string** | 스터디 타입 | [optional] [default to undefined]
**hostType** | **string** | 스터디 주최자 구분 | [optional] [default to undefined]
**targetRoles** | **Array<string>** | 스터디 모집 대상 (복수 선택 가능) | [optional] [default to undefined]
Expand Down Expand Up @@ -37,6 +38,7 @@ const instance: GroupStudyBasicInfoResponseDto = {
groupStudyId,
classification,
leader,
studyLeaderParticipation,
type,
hostType,
targetRoles,
Expand Down
2 changes: 2 additions & 0 deletions src/api/openapi/docs/GroupStudyBasicInfoUpdateRequestDto.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**studyLeaderParticipation** | **boolean** | 스터디 리더 참가 여부 | [default to undefined]
**type** | **string** | 스터디 타입 | [default to undefined]
**hostType** | **string** | 스터디 주최자 구분(미입력 시 일반회원 GENERAL) | [optional] [default to undefined]
**targetRoles** | **Array<string>** | 스터디 모집 대상 (복수 선택 가능) | [default to undefined]
Expand All @@ -26,6 +27,7 @@ Name | Type | Description | Notes
import { GroupStudyBasicInfoUpdateRequestDto } from './api';

const instance: GroupStudyBasicInfoUpdateRequestDto = {
studyLeaderParticipation,
type,
hostType,
targetRoles,
Expand Down
4 changes: 4 additions & 0 deletions src/api/openapi/models/group-study-basic-info-response-dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ export interface GroupStudyBasicInfoResponseDto {
* 그룹스터디 리더 정보
*/
'leader'?: StudyReservationMemberDto;
/**
* 스터디 리더 참가 여부
*/
'studyLeaderParticipation'?: boolean;
/**
* 스터디 타입
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
* 그룹스터디 기본 정보 수정 요청
*/
export interface GroupStudyBasicInfoUpdateRequestDto {
/**
* 스터디 리더 참가 여부
*/
'studyLeaderParticipation': boolean;
/**
* 스터디 타입
*/
Expand Down
Loading