public Asset(RestfulObject parent) : base(parent) { }
public DocumentAsset(RestfulObject parent, FileStream file, string title = null) : base(parent) { this.title = title; _file = file; }
public ImageAsset(RestfulObject parent, FileStream file, string title = null, string link = null) : base(parent) { this.title = title; this.link = link; _file = file; }
public Pop(RestfulObject parent) { if (parent.Parent () == null) throw new Exception("You must create a pop from a template's pops collection."); Setup((Template)parent.Parent()); }
public RestfulModel(RestfulObject parent) : base(parent) { }
public RestfulObject(RestfulObject parent) { _parent = parent; _api = _parent.API (); }
public Tracer(RestfulObject parent) : base(parent) { }