com.tencentcloudapi.youmall.v20180228.models.SceneInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-youmall Show documentation
Show all versions of tencentcloud-sdk-java-youmall Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
package com.tencentcloudapi.youmall.v20180228.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class SceneInfo extends AbstractModel{
/**
* 场景图
*/
@SerializedName("ScenePictureURL")
@Expose
private String ScenePictureURL;
/**
* 抓拍头像左上角X坐标在场景图中的像素点位置
*/
@SerializedName("HeadX")
@Expose
private Long HeadX;
/**
* 抓拍头像左上角Y坐标在场景图中的像素点位置
*/
@SerializedName("HeadY")
@Expose
private Long HeadY;
/**
* 抓拍头像在场景图中占有的像素宽度
*/
@SerializedName("HeadWidth")
@Expose
private Long HeadWidth;
/**
* 抓拍头像在场景图中占有的像素高度
*/
@SerializedName("HeadHeight")
@Expose
private Long HeadHeight;
/**
* Get 场景图
* @return ScenePictureURL 场景图
*/
public String getScenePictureURL() {
return this.ScenePictureURL;
}
/**
* Set 场景图
* @param ScenePictureURL 场景图
*/
public void setScenePictureURL(String ScenePictureURL) {
this.ScenePictureURL = ScenePictureURL;
}
/**
* Get 抓拍头像左上角X坐标在场景图中的像素点位置
* @return HeadX 抓拍头像左上角X坐标在场景图中的像素点位置
*/
public Long getHeadX() {
return this.HeadX;
}
/**
* Set 抓拍头像左上角X坐标在场景图中的像素点位置
* @param HeadX 抓拍头像左上角X坐标在场景图中的像素点位置
*/
public void setHeadX(Long HeadX) {
this.HeadX = HeadX;
}
/**
* Get 抓拍头像左上角Y坐标在场景图中的像素点位置
* @return HeadY 抓拍头像左上角Y坐标在场景图中的像素点位置
*/
public Long getHeadY() {
return this.HeadY;
}
/**
* Set 抓拍头像左上角Y坐标在场景图中的像素点位置
* @param HeadY 抓拍头像左上角Y坐标在场景图中的像素点位置
*/
public void setHeadY(Long HeadY) {
this.HeadY = HeadY;
}
/**
* Get 抓拍头像在场景图中占有的像素宽度
* @return HeadWidth 抓拍头像在场景图中占有的像素宽度
*/
public Long getHeadWidth() {
return this.HeadWidth;
}
/**
* Set 抓拍头像在场景图中占有的像素宽度
* @param HeadWidth 抓拍头像在场景图中占有的像素宽度
*/
public void setHeadWidth(Long HeadWidth) {
this.HeadWidth = HeadWidth;
}
/**
* Get 抓拍头像在场景图中占有的像素高度
* @return HeadHeight 抓拍头像在场景图中占有的像素高度
*/
public Long getHeadHeight() {
return this.HeadHeight;
}
/**
* Set 抓拍头像在场景图中占有的像素高度
* @param HeadHeight 抓拍头像在场景图中占有的像素高度
*/
public void setHeadHeight(Long HeadHeight) {
this.HeadHeight = HeadHeight;
}
public SceneInfo() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public SceneInfo(SceneInfo source) {
if (source.ScenePictureURL != null) {
this.ScenePictureURL = new String(source.ScenePictureURL);
}
if (source.HeadX != null) {
this.HeadX = new Long(source.HeadX);
}
if (source.HeadY != null) {
this.HeadY = new Long(source.HeadY);
}
if (source.HeadWidth != null) {
this.HeadWidth = new Long(source.HeadWidth);
}
if (source.HeadHeight != null) {
this.HeadHeight = new Long(source.HeadHeight);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ScenePictureURL", this.ScenePictureURL);
this.setParamSimple(map, prefix + "HeadX", this.HeadX);
this.setParamSimple(map, prefix + "HeadY", this.HeadY);
this.setParamSimple(map, prefix + "HeadWidth", this.HeadWidth);
this.setParamSimple(map, prefix + "HeadHeight", this.HeadHeight);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy