1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace Studio.Scripts.HttpMessage
- {
- public class UpdateSettingsMessage : BaseHttpMessage
- {
- public UpdateSettingsBody body;
- public string token
- {
- set
- {
- headers["token"] = value;
- }
- }
- public UpdateSettingsMessage()
- {
- messageModuleType = MessageModuleType.Set;
- methodType = HttpMethodType.Post;
- _path = "v1/updateSettings";
- headers = new Dictionary<string, string>();
- headers.Add("Content-Type", "application/json");
- headers.Add("token", "");
- _wwwForm = null;
- }
- public override WWWForm wwwForm
- {
- get
- {
- if (_wwwForm == null)
- {
- _wwwForm = GetWWWFrom<UpdateSettingsBody>(body);
- }
- return _wwwForm;
- }
- }
- public override string ToBodyString()
- {
- return Newtonsoft.Json.JsonConvert.SerializeObject(body);
- }
- }
- public struct UpdateSettingsBody
- {
-
-
-
- public bool camera;
-
-
-
- public bool mic;
-
-
-
- public int ratio;
-
-
-
- public int fps;
-
-
-
- public int fmss;
- }
- }
|