Example #1
0
 public Task <ListPage <Asset> > ListAssetsOnChild(ParentResourceType parentType, string parentID, ResourceType type, string ID, ListArgsPageOnly args, string token) =>
 ListAsync <Asset>(args, token, "assets", parentType.ToString(), parentID, type.ToString(), ID);
Example #2
0
 public ParentAttribute(ParentResourceType type)
 {
     ParentType = type;
 }
Example #3
0
 public Task <ListPage <Document <T> > > ListDocumentsOnChild <T>(string schemaID, ParentResourceType parentType, string parentID, ResourceType type, string ID, ListArgsPageOnly args, string token) =>
 ListAsync <Document <T> >(args, token, "schemas", schemaID, "documents", parentType.ToString(), parentID, type.ToString(), ID);