All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ccc20200701.models.GetVideoRequest Maven / Gradle / Ivy

There is a newer version: 2.28.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;

import com.aliyun.tea.*;

public class GetVideoRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("ContactId") public String contactId; /** *

This parameter is required.

*/ @NameInMap("InstanceId") public String instanceId; public static GetVideoRequest build(java.util.Map map) throws Exception { GetVideoRequest self = new GetVideoRequest(); return TeaModel.build(map, self); } public GetVideoRequest setContactId(String contactId) { this.contactId = contactId; return this; } public String getContactId() { return this.contactId; } public GetVideoRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy