Package com.kakao.sdk.story.model

카카오스토리 API 요청과 응답에 사용되는 모델 클래스들을 제공하는 패키지.

Types

Link copied to clipboard
enum BirthdayType : Enum<BirthdayType>

스토리 프로필의 생일 타입

Link copied to clipboard
data class LinkInfo(url: String?, requestedUrl: String?, host: String?, title: String?, description: String?, section: String?, type: String?, images: List<String>?) : Parcelable

카카오스토리 포스팅을 위한 스크랩 API 응답 클래스

Link copied to clipboard
data class Story(id: String, url: String, mediaType: String?, createdAt: Date, commentCount: Int, likeCount: Int, content: String?, permission: String?, media: List<StoryImage>?, likes: List<StoryLike>?, comments: List<StoryComment>?) : Parcelable

스토리 조회 API 응답 클래스

Link copied to clipboard
data class StoryActor(displayName: String, profileThumbnailUrl: String?) : Parcelable

카카오스토리의 작성자 정보를 담고 있는 클래스

Link copied to clipboard
data class StoryComment(writer: StoryActor, text: String) : Parcelable

카카오스토리의 댓글 정보를 담고 있는 클래스

Link copied to clipboard
data class StoryImage(xlarge: String?, large: String?, medium: String?, small: String?, original: String?) : Parcelable

카카오스토리의 내스토리 정보 중 이미지 내용을 담고 있는 클래스

Link copied to clipboard
data class StoryLike(actor: StoryActor, emotion: StoryLike.Emotion) : Parcelable

카카오스토리의 좋아요 등 느낌(감정표현)에 대한 정보를 담고 있는 클래스

Link copied to clipboard
data class StoryProfile(nickname: String?, profileImageUrl: String?, thumbnailUrl: String?, bgImageUrl: String?, permalink: String?, birthday: String?, birthdayType: BirthdayType?) : Parcelable

카카오스토리 프로필 조회 API 응답 클래스