FileController.CheckIn Method (CheckInIdsOptions, Nullable<Guid>) |
Checks in files with the specified IDs and comments.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPostAttribute("CheckIn")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<CheckInResultData> CheckIn(
[FromBodyAttribute] CheckInIdsOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("CheckIn")>
<ProducesResponseTypeAttribute(440)>
Public Function CheckIn (
<FromBodyAttribute> options As CheckInIdsOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of CheckInResultData)
public:
[HttpPostAttribute(L"CheckIn")]
[ProducesResponseTypeAttribute(440)]
ActionResult<CheckInResultData^>^ CheckIn(
[FromBodyAttribute] CheckInIdsOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("CheckIn")>]
[<ProducesResponseTypeAttribute(440)>]
member CheckIn :
[<FromBodyAttribute>] options : CheckInIdsOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<CheckInResultData>
Parameters
- options
- Type: Dundas.BI.WebApi.Models.CheckInIdsOptions
The options. - sessionId (Optional)
- Type: System.Nullable<Guid>
ID of the current session.
Return Value
Type:
ActionResult<CheckInResultData>The operation completed successfully. The payload contains an
CheckInResultData object.
See Also