/** 파일 업로드 URL 생성 성공 응답 */ export type CreateB2bFileUploadUrlPayload = { /** 파일 아이디 */ fileId: string; /** 파일 업로드 URL */ url: string; };