aliyun-net-sdk-mts/Mts/Model/V20140618/RegisterCustomViewRequest.cs (144 lines of code) (raw):
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
using System.Collections.Generic;
using Aliyun.Acs.Core;
using Aliyun.Acs.Core.Http;
using Aliyun.Acs.Core.Transform;
using Aliyun.Acs.Core.Utils;
using Aliyun.Acs.Mts.Transform;
using Aliyun.Acs.Mts.Transform.V20140618;
namespace Aliyun.Acs.Mts.Model.V20140618
{
public class RegisterCustomViewRequest : RpcAcsRequest<RegisterCustomViewResponse>
{
public RegisterCustomViewRequest()
: base("Mts", "2014-06-18", "RegisterCustomView", "mts", "openAPI")
{
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
{
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Mts.Endpoint.endpointMap, null);
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Mts.Endpoint.endpointRegionalType, null);
}
Method = MethodType.POST;
}
private long? resourceOwnerId;
private string labelPrompt;
private string algorithm;
private string customGroupId;
private string resourceOwnerAccount;
private string ownerAccount;
private string customEntityId;
private long? ownerId;
private string imageUrl;
public long? ResourceOwnerId
{
get
{
return resourceOwnerId;
}
set
{
resourceOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
}
}
public string LabelPrompt
{
get
{
return labelPrompt;
}
set
{
labelPrompt = value;
DictionaryUtil.Add(QueryParameters, "LabelPrompt", value);
}
}
public string Algorithm
{
get
{
return algorithm;
}
set
{
algorithm = value;
DictionaryUtil.Add(QueryParameters, "Algorithm", value);
}
}
public string CustomGroupId
{
get
{
return customGroupId;
}
set
{
customGroupId = value;
DictionaryUtil.Add(QueryParameters, "CustomGroupId", value);
}
}
public string ResourceOwnerAccount
{
get
{
return resourceOwnerAccount;
}
set
{
resourceOwnerAccount = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value);
}
}
public string OwnerAccount
{
get
{
return ownerAccount;
}
set
{
ownerAccount = value;
DictionaryUtil.Add(QueryParameters, "OwnerAccount", value);
}
}
public string CustomEntityId
{
get
{
return customEntityId;
}
set
{
customEntityId = value;
DictionaryUtil.Add(QueryParameters, "CustomEntityId", value);
}
}
public long? OwnerId
{
get
{
return ownerId;
}
set
{
ownerId = value;
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
}
}
public string ImageUrl
{
get
{
return imageUrl;
}
set
{
imageUrl = value;
DictionaryUtil.Add(QueryParameters, "ImageUrl", value);
}
}
public override RegisterCustomViewResponse GetResponse(UnmarshallerContext unmarshallerContext)
{
return RegisterCustomViewResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}