21 lines
376 B
C#
21 lines
376 B
C#
namespace PS.IPAM;
|
|
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Specifies the authentication method for phpIPAM API.
|
|
/// </summary>
|
|
[Serializable]
|
|
public enum AuthType
|
|
{
|
|
/// <summary>
|
|
/// Authentication using username and password credentials.
|
|
/// </summary>
|
|
Credentials,
|
|
|
|
/// <summary>
|
|
/// Authentication using a static API token.
|
|
/// </summary>
|
|
Token
|
|
}
|