UnityEditor.AssetStoreContext.Link.Initialize C# (CSharp) Method

Initialize() public method

public Initialize ( UnityEditorInternal.JSONValue json ) : void
json UnityEditorInternal.JSONValue
return void
            public void Initialize(JSONValue json)
            {
                if (json.ContainsKey("type"))
                {
                    this.type = json["type"].AsString();
                }
                if (json.ContainsKey("id"))
                {
                    this.id = json["id"].AsString();
                }
            }
AssetStoreContext.Link