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

com.aliyun.ccc20200701.models.UpdateCampaignRequest 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 UpdateCampaignRequest extends TeaModel {
    /**
     * example:
     * 

[ * { * "beginTime": "09:00:00", * "endTime": "12:00:00" * } * ]

*/ @NameInMap("CallableTime") public String callableTime; /** *

This parameter is required.

* * example: *

ab11908b-6ebc-4b0c-b51e-3e17c7060

*/ @NameInMap("CampaignId") public String campaignId; /** * example: *

3a310f56-4d30-4081-ba24-5d87a3b7262e

*/ @NameInMap("ContactFlowId") public String contactFlowId; /** * example: *

1689933600000

*/ @NameInMap("EndTime") public String endTime; /** *

This parameter is required.

* * example: *

ccc-test

*/ @NameInMap("InstanceId") public String instanceId; @NameInMap("Name") public String name; /** * example: *

1689901200000

*/ @NameInMap("StartTime") public String startTime; @NameInMap("StrategyParameters") public String strategyParameters; public static UpdateCampaignRequest build(java.util.Map map) throws Exception { UpdateCampaignRequest self = new UpdateCampaignRequest(); return TeaModel.build(map, self); } public UpdateCampaignRequest setCallableTime(String callableTime) { this.callableTime = callableTime; return this; } public String getCallableTime() { return this.callableTime; } public UpdateCampaignRequest setCampaignId(String campaignId) { this.campaignId = campaignId; return this; } public String getCampaignId() { return this.campaignId; } public UpdateCampaignRequest setContactFlowId(String contactFlowId) { this.contactFlowId = contactFlowId; return this; } public String getContactFlowId() { return this.contactFlowId; } public UpdateCampaignRequest setEndTime(String endTime) { this.endTime = endTime; return this; } public String getEndTime() { return this.endTime; } public UpdateCampaignRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public UpdateCampaignRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public UpdateCampaignRequest setStartTime(String startTime) { this.startTime = startTime; return this; } public String getStartTime() { return this.startTime; } public UpdateCampaignRequest setStrategyParameters(String strategyParameters) { this.strategyParameters = strategyParameters; return this; } public String getStrategyParameters() { return this.strategyParameters; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy