ResponseDataFile
ResponseDataFile
내보내기 파일 하나의 다운로드 정보를 담는 스키마예요. 서명된 URL(url)과 바이트 크기(size)를 포함해요.
출처: 문서
본문
내보내기 파일 하나의 다운로드 정보를 담는 스키마예요. 서명된 URL(url)과 바이트 크기(size)를 포함해요.
실제 JSON 스키마는 다음과 같아요.
{
"properties": {
"size": {
"description": "Size of the file in bytes.",
"format": "int64",
"type": "integer"
},
"url": {
"description": "Signed download URL. URLs expire six hours after generation.",
"format": "uri",
"type": "string"
}
},
"type": "object"
}