| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package imm
- //Licensed under the Apache License, Version 2.0 (the "License");
- //you may not use this file except in compliance with the License.
- //You may obtain a copy of the License at
- //
- //http://www.apache.org/licenses/LICENSE-2.0
- //
- //Unless required by applicable law or agreed to in writing, software
- //distributed under the License is distributed on an "AS IS" BASIS,
- //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- //See the License for the specific language governing permissions and
- //limitations under the License.
- //
- // Code generated by Alibaba Cloud SDK Code Generator.
- // Changes may cause incorrect behavior and will be lost if the code is regenerated.
- // VideosItem is a nested struct in imm response
- type VideosItem struct {
- VideoUri string `json:"VideoUri" xml:"VideoUri"`
- RemarksA string `json:"RemarksA" xml:"RemarksA"`
- RemarksB string `json:"RemarksB" xml:"RemarksB"`
- CreateTime string `json:"CreateTime" xml:"CreateTime"`
- ModifyTime string `json:"ModifyTime" xml:"ModifyTime"`
- VideoWidth int `json:"VideoWidth" xml:"VideoWidth"`
- VideoHeight int `json:"VideoHeight" xml:"VideoHeight"`
- VideoFormat string `json:"VideoFormat" xml:"VideoFormat"`
- VideoDuration float64 `json:"VideoDuration" xml:"VideoDuration"`
- FileSize int `json:"FileSize" xml:"FileSize"`
- VideoFrames int `json:"VideoFrames" xml:"VideoFrames"`
- SourceType string `json:"SourceType" xml:"SourceType"`
- SourceUri string `json:"SourceUri" xml:"SourceUri"`
- SourcePosition string `json:"SourcePosition" xml:"SourcePosition"`
- ProcessStatus string `json:"ProcessStatus" xml:"ProcessStatus"`
- ProcessModifyTime string `json:"ProcessModifyTime" xml:"ProcessModifyTime"`
- VideoTagsStatus string `json:"VideoTagsStatus" xml:"VideoTagsStatus"`
- VideoTagsModifyTime string `json:"VideoTagsModifyTime" xml:"VideoTagsModifyTime"`
- CelebrityStatus string `json:"CelebrityStatus" xml:"CelebrityStatus"`
- CelebrityModifyTime string `json:"CelebrityModifyTime" xml:"CelebrityModifyTime"`
- CelebrityFailReason string `json:"CelebrityFailReason" xml:"CelebrityFailReason"`
- VideoTagsFailReason string `json:"VideoTagsFailReason" xml:"VideoTagsFailReason"`
- ProcessFailReason string `json:"ProcessFailReason" xml:"ProcessFailReason"`
- RemarksC string `json:"RemarksC" xml:"RemarksC"`
- RemarksD string `json:"RemarksD" xml:"RemarksD"`
- ExternalId string `json:"ExternalId" xml:"ExternalId"`
- VideoTags []VideoTagsItem `json:"VideoTags" xml:"VideoTags"`
- Celebrity []CelebrityItem `json:"Celebrity" xml:"Celebrity"`
- Persons []PersonsItem `json:"Persons" xml:"Persons"`
- }
|