22
22
using Aliyun . Acs . Core . Http ;
23
23
using Aliyun . Acs . Core . Transform ;
24
24
using Aliyun . Acs . Core . Utils ;
25
+ using Aliyun . Acs . facebody ;
25
26
using Aliyun . Acs . facebody . Transform ;
26
27
using Aliyun . Acs . facebody . Transform . V20200910 ;
27
28
@@ -30,7 +31,7 @@ namespace Aliyun.Acs.facebody.Model.V20200910
30
31
public class DetectIPCPedestrianOptimizedRequest : RoaAcsRequest < DetectIPCPedestrianOptimizedResponse >
31
32
{
32
33
public DetectIPCPedestrianOptimizedRequest ( )
33
- : base ( "facebody" , "2020-09-10" , "DetectIPCPedestrianOptimized" , "facebody" , "openAPI" )
34
+ : base ( "facebody" , "2020-09-10" , "DetectIPCPedestrianOptimized" )
34
35
{
35
36
if ( this . GetType ( ) . GetProperty ( "ProductEndpointMap" ) != null && this . GetType ( ) . GetProperty ( "ProductEndpointType" ) != null )
36
37
{
@@ -41,48 +42,48 @@ public DetectIPCPedestrianOptimizedRequest()
41
42
Method = MethodType . POST ;
42
43
}
43
44
45
+ private long ? height ;
46
+
44
47
private string imageData ;
45
48
46
49
private long ? width ;
47
50
48
- private long ? height ;
49
-
50
- public string ImageData
51
+ public long ? Height
51
52
{
52
53
get
53
54
{
54
- return imageData ;
55
+ return height ;
55
56
}
56
57
set
57
58
{
58
- imageData = value ;
59
- DictionaryUtil . Add ( BodyParameters , "imageData " , value ) ;
59
+ height = value ;
60
+ DictionaryUtil . Add ( BodyParameters , "height " , value . ToString ( ) ) ;
60
61
}
61
62
}
62
63
63
- public long ? Width
64
+ public string ImageData
64
65
{
65
66
get
66
67
{
67
- return width ;
68
+ return imageData ;
68
69
}
69
70
set
70
71
{
71
- width = value ;
72
- DictionaryUtil . Add ( BodyParameters , "width " , value . ToString ( ) ) ;
72
+ imageData = value ;
73
+ DictionaryUtil . Add ( BodyParameters , "imageData " , value ) ;
73
74
}
74
75
}
75
76
76
- public long ? Height
77
+ public long ? Width
77
78
{
78
79
get
79
80
{
80
- return height ;
81
+ return width ;
81
82
}
82
83
set
83
84
{
84
- height = value ;
85
- DictionaryUtil . Add ( BodyParameters , "height " , value . ToString ( ) ) ;
85
+ width = value ;
86
+ DictionaryUtil . Add ( BodyParameters , "width " , value . ToString ( ) ) ;
86
87
}
87
88
}
88
89
0 commit comments