Struct ConfigResponse
A struct representing the response of a Remote Config fetch.
Namespace: Unity.Services.RemoteConfig
Syntax
public struct ConfigResponse
Fields
body
The body of the Remote Config backend response.
Declaration
public JObject body
Field Value
Type | Description |
---|---|
JObject | The full response body as a JObject. |
headers
The headers from the Remote Config backend response.
Declaration
public Dictionary<string, string> headers
Field Value
Type | Description |
---|---|
Dictionary<String, String> | A Dictionary containing the headers.. |
requestOrigin
The origin point of the last retrieved configuration settings.
Declaration
public ConfigOrigin requestOrigin
Field Value
Type | Description |
---|---|
ConfigOrigin | An enum describing the origin point of your most recently loaded configuration settings. |
status
The status of the current Remote Config request.
Declaration
public ConfigRequestStatus status
Field Value
Type | Description |
---|---|
ConfigRequestStatus | An enum representing the status of the current Remote Config request. |