Skip to content

Commit

Permalink
feat: message base enum update (#17)
Browse files Browse the repository at this point in the history
* feat: message base enum update

* fix: lint
  • Loading branch information
HminiL authored Jan 17, 2023
1 parent 818d626 commit c33bb55
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions rcs_pydantic/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,24 @@ class MessageEnum(Enum):
LMS: str = "SL000000" # 텍스트 카드 (LMS)
STANDALONE_MEDIA_TOP_TALL: str = "SMwThT00" # 세로형(Tall)
STANDALONE_MEDIA_TOP_MEDIUM: str = "SMwThM00" # 세로형(Medium)
CAROUSEL_MEDIUM_2: str = "CMwMhM0200" # 슬라이드형(Medium, 2장)
CAROUSEL_MEDIUM_3: str = "CMwMhM0300" # 슬라이드형(Medium, 3장)
CAROUSEL_MEDIUM_4: str = "CMwMhM0400" # 슬라이드형(Medium, 4장)
CAROUSEL_MEDIUM_5: str = "CMwMhM0500" # 슬라이드형(Medium, 5장)
CAROUSEL_MEDIUM_6: str = "CMwMhM0600" # 슬라이드형(Medium, 6장)
CAROUSEL_SMALL_2: str = "CMwShS0200" # 슬라이드형(Small, 2장)
CAROUSEL_SMALL_3: str = "CMwShS0300" # 슬라이드형(Small, 3장)
CAROUSEL_SMALL_4: str = "CMwShS0400" # 슬라이드형(Small, 4장)
CAROUSEL_SMALL_5: str = "CMwShS0500" # 슬라이드형(Small, 5장)
CAROUSEL_SMALL_6: str = "CMwShS0600" # 슬라이드형(Small, 6장)
HIGHLIGHTED_IMAGE_N_TITLE_LONG: str = "OMHITV0001" # 이미지 & 타이틀 강조형 (3:4)
HIGHLIGHTED_IMAGE_N_TITLE_SQUARE: str = "OMHITS0001" # 이미지 & 타이틀 강조형 (1:1)
HIGHLIGHTED_IMAGE_LONG: str = "OMHIMV0001" # 이미지 강조형 (3:4)
HIGHLIGHTED_IMAGE_SQUARE: str = "OMHIMS0001" # 이미지 강조형 (1:1)
THUMBNAIL_VERTICAL: str = "OMTBNV0001" # 썸네일형 (세로)
THUMBNAIL_HORIZONTAL: str = "OMTBNS0001" # 썸네일형 (가로)
SNS_RACTANGLE: str = "OMSNSS0001" # SNS형 (가로)
SNS_SQUARE: str = "OMSNSH0001" # SNS형 (세로)


class FileUsageTypeEnum(Enum):
Expand Down

0 comments on commit c33bb55

Please sign in to comment.