/// <summary> /// To get all custom views of the module that are modified after the date-time specified in the If-Modified-Since Header. /// </summary> /// <returns>BulkAPIResponse<ZCRMCustomView> class instance.</returns> /// <param name="modifiedSince">DateTime(ISO8601 format) to display custom views which are modified after the given input datetime (String)</param> public BulkAPIResponse <ZCRMCustomView> GetAllCustomViews(string modifiedSince) { return(ModuleAPIHandler.GetInstance(this).GetAllCustomViews(modifiedSince)); }
/// <summary> /// To get the custom view based on custom view Id of the module. /// </summary> /// <returns>APIResponse class instance</returns> /// <param name="cvId">Custom view Id (Long) of module</param> public APIResponse GetCustomView(long cvId) { return(ModuleAPIHandler.GetInstance(this).GetCustomView(cvId)); }
/// <summary> /// To get layout details based on layout Id of the module. /// </summary> /// <returns>APIResponse class instance.</returns> /// <param name="layoutId">Layout Id (Long) of the module.</param> public APIResponse GetLayoutDetails(long layoutId) { return(ModuleAPIHandler.GetInstance(this).GetLayoutDetails(layoutId)); }
/// <summary> /// To get all layouts of the module that are modified after the date-time specified in the If-Modified-Since Header /// </summary> /// <returns>BulkAPIResponse<ZCRMLayout> class instance.</returns> /// <param name="modifiedSince">DateTime(ISO8601 format) to display layouts which are modified after the given input datetime (String)</param> public BulkAPIResponse <ZCRMLayout> GetAllLayouts(string modifiedSince) { return(ModuleAPIHandler.GetInstance(this).GetAllLayouts(modifiedSince)); }
/// <summary> /// To get related lists of the module. /// </summary> /// <returns>BulkAPIResponse<ZCRMModuleRelation> class instance</returns> public BulkAPIResponse <ZCRMModuleRelation> GetRelatedLists() { return(ModuleAPIHandler.GetInstance(this).GetAllRelatedLists()); }
/// <summary> /// To get field details based on field Id of the module. /// </summary> /// <returns>APIResponse class instance.</returns> /// <param name="fieldId">Field Id (Long) of the module.</param> public APIResponse GetField(long fieldId) { return(ModuleAPIHandler.GetInstance(this).GetField(fieldId)); }
/// <summary> /// To get RealtedList details based on RealtedList Id of the module. /// </summary> /// <returns>APIResponse class instance.</returns> /// <param name="realtedListId">RealtedList Id (Long) of the module.</param> public APIResponse GetRelatedList(long realtedListId) { return(ModuleAPIHandler.GetInstance(this).GetRelatedList(realtedListId)); }