•
방문기록 형식
const initialVisitRecord = {
purpose: 0, // 방문 목적 0 : 덕지순례 갈예정 , 1: 갔다옴
place: {
name: '', // 장소이름
latitude: 100.0, // 위도
longitude: 100.0, // 경도
type: enum(Cafe, Restaurant, BirthCafe) // 형식에 맞추어서 string으로 보내주시면됩니다
location: string // 식당 주소
}
group: '', // 그룹명
member: '', // 멤버명
temperature: number //온도 (optional)
};
TypeScript
복사