> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.CheckoutInfo

# <a id="SuperOffice_WebApi_Data_CheckoutInfo" /> Class CheckoutInfo

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for CheckoutInfo.
Information about the checked-out state of one document, describing whether it is checked out, and to whom.

```csharp theme={null}
public class CheckoutInfo
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[CheckoutInfo](SuperOffice.WebApi.Data.CheckoutInfo.md)

#### Inherited Members

[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Constructors

### <a id="SuperOffice_WebApi_Data_CheckoutInfo__ctor" /> CheckoutInfo()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public CheckoutInfo()
```

## Properties

### <a id="SuperOffice_WebApi_Data_CheckoutInfo_AssociateId" /> AssociateId

Id of associate who has currently checked out the document; 0 if it is not checked out,  or is checked out by someone who is not a SuperOffice user

```csharp theme={null}
public virtual int AssociateId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_CheckoutInfo_Name" /> Name

Name of person who has currently checked out the document; blank if it is not checked out. This property may also be blank if the AssociateId is nonzero; NetServer will retrieve the associates' name as needed.

```csharp theme={null}
public virtual string Name { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_CheckoutInfo_State" /> State

Checkout state
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public CheckoutState? State { get; set; }
```

#### Property Value

[CheckoutState](SuperOffice.WebApi.Data.CheckoutState.md)?

#### See Also

[CheckoutInfo](SuperOffice.WebApi.Data.CheckoutInfo.md).[State\_String](SuperOffice.WebApi.Data.CheckoutInfo.md#SuperOffice_WebApi_Data_CheckoutInfo_State_String)

### <a id="SuperOffice_WebApi_Data_CheckoutInfo_State_String" /> State\_String

Checkout state
Raw string enum value.

```csharp theme={null}
[JsonProperty("State")]
public string State_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[CheckoutInfo](SuperOffice.WebApi.Data.CheckoutInfo.md).[State](SuperOffice.WebApi.Data.CheckoutInfo.md#SuperOffice_WebApi_Data_CheckoutInfo_State)

## See Also

[DocumentAgent](SuperOffice.WebApi.Agents.DocumentAgent.md)


## Related topics

- [SuperOffice.WebApi.Agents.DocumentAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.DocumentAgent.md)
- [SuperOffice.WebApi.Agents.IDocumentAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IDocumentAgent.md)
- [SuperOffice.WebApi.Data.CheckoutState](/en/api/reference/webapi/SuperOffice.WebApi.Data.CheckoutState.md)
- [SuperOffice.WebApi.Data.Document CheckoutDocumentRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Document_CheckoutDocumentRequest.md)
- [SuperOffice.WebApi.Data.Document UndoCheckoutDocumentRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Document_UndoCheckoutDocumentRequest.md)
- [SuperOffice.WebApi.Data.Document GetCheckoutStateRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Document_GetCheckoutStateRequest.md)
