Skip to content

Commit 1eec105

Browse files
committed
Release MergeVideoModelFace.
1 parent 3b85347 commit 1eec105

File tree

63 files changed

+2059
-1505
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2059
-1505
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1301
1+
1.36.1302
Lines changed: 49 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,60 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTECOMMERCEVIDEOREQUEST_H_
18-
#define ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTECOMMERCEVIDEOREQUEST_H_
19-
20-
#include <alibabacloud/videoenhan/VideoenhanExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Videoenhan {
28-
namespace Model {
29-
class ALIBABACLOUD_VIDEOENHAN_EXPORT AbstractEcommerceVideoRequest : public RpcServiceRequest {
30-
public:
31-
AbstractEcommerceVideoRequest();
32-
~AbstractEcommerceVideoRequest();
33-
float getDuration() const;
34-
void setDuration(float duration);
35-
int getHeight() const;
36-
void setHeight(int height);
37-
bool getAsync() const;
38-
void setAsync(bool async);
39-
std::string getVideoUrl() const;
40-
void setVideoUrl(const std::string &videoUrl);
41-
int getWidth() const;
42-
void setWidth(int width);
43-
44-
private:
45-
float duration_;
46-
int height_;
47-
bool async_;
48-
std::string videoUrl_;
49-
int width_;
50-
};
51-
} // namespace Model
52-
} // namespace Videoenhan
53-
} // namespace AlibabaCloud
54-
#endif // !ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTECOMMERCEVIDEOREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTECOMMERCEVIDEOREQUEST_H_
18+
#define ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTECOMMERCEVIDEOREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/videoenhan/VideoenhanExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Videoenhan
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_VIDEOENHAN_EXPORT AbstractEcommerceVideoRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
AbstractEcommerceVideoRequest();
36+
~AbstractEcommerceVideoRequest();
37+
38+
float getDuration()const;
39+
void setDuration(float duration);
40+
int getHeight()const;
41+
void setHeight(int height);
42+
bool getAsync()const;
43+
void setAsync(bool async);
44+
std::string getVideoUrl()const;
45+
void setVideoUrl(const std::string& videoUrl);
46+
int getWidth()const;
47+
void setWidth(int width);
48+
49+
private:
50+
float duration_;
51+
int height_;
52+
bool async_;
53+
std::string videoUrl_;
54+
int width_;
55+
56+
};
57+
}
58+
}
59+
}
60+
#endif // !ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTECOMMERCEVIDEOREQUEST_H_

videoenhan/include/alibabacloud/videoenhan/model/AbstractEcommerceVideoResult.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,16 @@ namespace AlibabaCloud
4242
AbstractEcommerceVideoResult();
4343
explicit AbstractEcommerceVideoResult(const std::string &payload);
4444
~AbstractEcommerceVideoResult();
45+
std::string getMessage()const;
4546
Data getData()const;
47+
std::string getCode()const;
4648

4749
protected:
4850
void parse(const std::string &payload);
4951
private:
52+
std::string message_;
5053
Data data_;
54+
std::string code_;
5155

5256
};
5357
}
Lines changed: 43 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,54 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTFILMVIDEOREQUEST_H_
18-
#define ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTFILMVIDEOREQUEST_H_
19-
20-
#include <alibabacloud/videoenhan/VideoenhanExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Videoenhan {
28-
namespace Model {
29-
class ALIBABACLOUD_VIDEOENHAN_EXPORT AbstractFilmVideoRequest : public RpcServiceRequest {
30-
public:
31-
AbstractFilmVideoRequest();
32-
~AbstractFilmVideoRequest();
33-
int getLength() const;
34-
void setLength(int length);
35-
bool getAsync() const;
36-
void setAsync(bool async);
37-
std::string getVideoUrl() const;
38-
void setVideoUrl(const std::string &videoUrl);
39-
40-
private:
41-
int length_;
42-
bool async_;
43-
std::string videoUrl_;
44-
};
45-
} // namespace Model
46-
} // namespace Videoenhan
47-
} // namespace AlibabaCloud
48-
#endif // !ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTFILMVIDEOREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTFILMVIDEOREQUEST_H_
18+
#define ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTFILMVIDEOREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/videoenhan/VideoenhanExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Videoenhan
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_VIDEOENHAN_EXPORT AbstractFilmVideoRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
AbstractFilmVideoRequest();
36+
~AbstractFilmVideoRequest();
37+
38+
int getLength()const;
39+
void setLength(int length);
40+
bool getAsync()const;
41+
void setAsync(bool async);
42+
std::string getVideoUrl()const;
43+
void setVideoUrl(const std::string& videoUrl);
44+
45+
private:
46+
int length_;
47+
bool async_;
48+
std::string videoUrl_;
49+
50+
};
51+
}
52+
}
53+
}
54+
#endif // !ALIBABACLOUD_VIDEOENHAN_MODEL_ABSTRACTFILMVIDEOREQUEST_H_

videoenhan/include/alibabacloud/videoenhan/model/AbstractFilmVideoResult.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,16 @@ namespace AlibabaCloud
4141
AbstractFilmVideoResult();
4242
explicit AbstractFilmVideoResult(const std::string &payload);
4343
~AbstractFilmVideoResult();
44+
std::string getMessage()const;
4445
Data getData()const;
46+
std::string getCode()const;
4547

4648
protected:
4749
void parse(const std::string &payload);
4850
private:
51+
std::string message_;
4952
Data data_;
53+
std::string code_;
5054

5155
};
5256
}
Lines changed: 43 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,54 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_VIDEOENHAN_MODEL_ADDFACEVIDEOTEMPLATEREQUEST_H_
18-
#define ALIBABACLOUD_VIDEOENHAN_MODEL_ADDFACEVIDEOTEMPLATEREQUEST_H_
19-
20-
#include <alibabacloud/videoenhan/VideoenhanExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Videoenhan {
28-
namespace Model {
29-
class ALIBABACLOUD_VIDEOENHAN_EXPORT AddFaceVideoTemplateRequest : public RpcServiceRequest {
30-
public:
31-
AddFaceVideoTemplateRequest();
32-
~AddFaceVideoTemplateRequest();
33-
std::string getUserId() const;
34-
void setUserId(const std::string &userId);
35-
bool getAsync() const;
36-
void setAsync(bool async);
37-
std::string getVideoURL() const;
38-
void setVideoURL(const std::string &videoURL);
39-
40-
private:
41-
std::string userId_;
42-
bool async_;
43-
std::string videoURL_;
44-
};
45-
} // namespace Model
46-
} // namespace Videoenhan
47-
} // namespace AlibabaCloud
48-
#endif // !ALIBABACLOUD_VIDEOENHAN_MODEL_ADDFACEVIDEOTEMPLATEREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_VIDEOENHAN_MODEL_ADDFACEVIDEOTEMPLATEREQUEST_H_
18+
#define ALIBABACLOUD_VIDEOENHAN_MODEL_ADDFACEVIDEOTEMPLATEREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/videoenhan/VideoenhanExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Videoenhan
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_VIDEOENHAN_EXPORT AddFaceVideoTemplateRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
AddFaceVideoTemplateRequest();
36+
~AddFaceVideoTemplateRequest();
37+
38+
std::string getUserId()const;
39+
void setUserId(const std::string& userId);
40+
bool getAsync()const;
41+
void setAsync(bool async);
42+
std::string getVideoURL()const;
43+
void setVideoURL(const std::string& videoURL);
44+
45+
private:
46+
std::string userId_;
47+
bool async_;
48+
std::string videoURL_;
49+
50+
};
51+
}
52+
}
53+
}
54+
#endif // !ALIBABACLOUD_VIDEOENHAN_MODEL_ADDFACEVIDEOTEMPLATEREQUEST_H_

0 commit comments

Comments
 (0)