123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace COSXML.Model.Tag
- {
- public sealed class PreSignatureStruct
- {
-
-
-
- public string appid;
-
-
-
- public string bucket;
-
-
-
- public string region;
-
-
-
- public string host;
-
-
-
- public string key;
-
-
-
- public bool isHttps;
-
-
-
- public bool signHost = false;
-
-
-
- public string httpMethod;
-
-
-
- public Dictionary<string, string> queryParameters;
-
-
-
- public Dictionary<string, string> headers;
-
-
-
- public long signDurationSecond;
-
-
-
- public long keyDurationSecond;
- }
- }
|