V2ColumnOrganizedStachUtilities {factset.protobuf.stachextensions} | R Documentation |
Provide helper functions for column organized stach
GetPrimaryTableIds()
Get Primary Table Ids
V2ColumnOrganizedStachUtilities$GetPrimaryTableIds(package)
package
Stach Data which is represented as a Package object
Returns list of primary table ids
Decompress()
Get decompress stach data
V2ColumnOrganizedStachUtilities$Decompress(package)
package
Stach Data which is represented as a Package object
Returns decompressed stach data
clone()
The objects of this class are cloneable with this method.
V2ColumnOrganizedStachUtilities$clone(deep = FALSE)
deep
Whether to make a deep clone.
## Not run:
compressedFilePath <- 'Path of your json file'
compressedData <- jsonlite::read_json(path=compressedFilePath,
auto_unbox=TRUE)
stachUtilities <-
factset.protobuf.stachextensions::V2ColumnOrganizedStachUtilities
primaryTableIds <-
stachUtilities$public_methods$GetPrimaryTableIds(compressedData)
## End(Not run)
## Not run:
compressedFilePath <- 'Path of your json file'
compressedData <- jsonlite::read_json(path=compressedFilePath,
auto_unbox=TRUE)
utility <-
factset.protobuf.stachextensions::V2ColumnOrganizedStachUtilities$new()
deCompressedData <- utility$Decompress(compressedData)
## End(Not run)