Rock.CheckIn.CheckInState.FromJson C# (CSharp) Method

FromJson() public static method

Creates a new CheckInState object Froms a json string.
public static FromJson ( string json ) : CheckInState
json string The json.
return CheckInState
        public static CheckInState FromJson( string json )
        {
            return JsonConvert.DeserializeObject( json, typeof( CheckInState ) ) as CheckInState;
        }