diff --git a/scripts/generate.ps1 b/scripts/generate.ps1 index 7f14cb8..408e2e0 100644 --- a/scripts/generate.ps1 +++ b/scripts/generate.ps1 @@ -7,6 +7,6 @@ java -jar ./vendor/openapi-generator/openapi-generator-cli.jar generate ` -g csharp ` -o . ` --global-property apis,models,supportingFiles,apiDocs=false,modelDocs=false,apiTests=false,modelTests=false ` - --additional-properties=packageName=Tribufu,library=restsharp,zeroBasedEnums=true,nullableReferenceTypes=true ` + --additional-properties=packageName=Tribufu,library=restsharp,targetFramework=net47,zeroBasedEnums=true ` --openapi-normalizer SET_TAGS_FOR_ALL_OPERATIONS=TribufuGenerated ` --skip-validate-spec diff --git a/src/Tribufu/Api/TribufuGeneratedApi.cs b/src/Tribufu/Api/TribufuGeneratedApi.cs index c861352..8edc678 100644 --- a/src/Tribufu/Api/TribufuGeneratedApi.cs +++ b/src/Tribufu/Api/TribufuGeneratedApi.cs @@ -37,7 +37,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// CodeResponse - CodeResponse Authorize(AuthorizeRequest? authorizeRequest = default(AuthorizeRequest?), int operationIndex = 0); + CodeResponse Authorize(AuthorizeRequest authorizeRequest = default(AuthorizeRequest), int operationIndex = 0); /// /// Authorize the client to access the user information. @@ -49,7 +49,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of CodeResponse - ApiResponse AuthorizeWithHttpInfo(AuthorizeRequest? authorizeRequest = default(AuthorizeRequest?), int operationIndex = 0); + ApiResponse AuthorizeWithHttpInfo(AuthorizeRequest authorizeRequest = default(AuthorizeRequest), int operationIndex = 0); /// /// Change the email of a user. /// @@ -61,7 +61,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void ChangeEmail(string id, Object? body = default(Object?), int operationIndex = 0); + void ChangeEmail(string id, Object body = default(Object), int operationIndex = 0); /// /// Change the email of a user. @@ -74,7 +74,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse ChangeEmailWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse ChangeEmailWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Change the password of a user. /// @@ -86,7 +86,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void ChangePassword(string id, Object? body = default(Object?), int operationIndex = 0); + void ChangePassword(string id, Object body = default(Object), int operationIndex = 0); /// /// Change the password of a user. @@ -99,7 +99,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse ChangePasswordWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse ChangePasswordWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Claim a game server. /// @@ -111,7 +111,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void ClaimGameServer(string id, Object? body = default(Object?), int operationIndex = 0); + void ClaimGameServer(string id, Object body = default(Object), int operationIndex = 0); /// /// Claim a game server. @@ -124,7 +124,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse ClaimGameServerWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse ClaimGameServerWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Claim a game server. /// @@ -137,7 +137,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - void ClaimGameServerV1(string id, Object? body = default(Object?), int operationIndex = 0); + void ClaimGameServerV1(string id, Object body = default(Object), int operationIndex = 0); /// /// Claim a game server. @@ -151,7 +151,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - ApiResponse ClaimGameServerV1WithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse ClaimGameServerV1WithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Convert a string to base64 or vice versa. /// @@ -162,7 +162,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// CryptoViewModel - CryptoViewModel ConvertBase64(CryptoViewModel? cryptoViewModel = default(CryptoViewModel?), int operationIndex = 0); + CryptoViewModel ConvertBase64(CryptoViewModel cryptoViewModel = default(CryptoViewModel), int operationIndex = 0); /// /// Convert a string to base64 or vice versa. @@ -174,7 +174,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of CryptoViewModel - ApiResponse ConvertBase64WithHttpInfo(CryptoViewModel? cryptoViewModel = default(CryptoViewModel?), int operationIndex = 0); + ApiResponse ConvertBase64WithHttpInfo(CryptoViewModel cryptoViewModel = default(CryptoViewModel), int operationIndex = 0); /// /// Create an oauth2 client. /// @@ -185,7 +185,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void CreateClient(Object? body = default(Object?), int operationIndex = 0); + void CreateClient(Object body = default(Object), int operationIndex = 0); /// /// Create an oauth2 client. @@ -197,7 +197,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse CreateClientWithHttpInfo(Object? body = default(Object?), int operationIndex = 0); + ApiResponse CreateClientWithHttpInfo(Object body = default(Object), int operationIndex = 0); /// /// Create a new game server. /// @@ -208,7 +208,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void CreateGameServer(Object? body = default(Object?), int operationIndex = 0); + void CreateGameServer(Object body = default(Object), int operationIndex = 0); /// /// Create a new game server. @@ -220,7 +220,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse CreateGameServerWithHttpInfo(Object? body = default(Object?), int operationIndex = 0); + ApiResponse CreateGameServerWithHttpInfo(Object body = default(Object), int operationIndex = 0); /// /// Create a new game server cluster. /// @@ -231,7 +231,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void CreateGameServerCluster(Object? body = default(Object?), int operationIndex = 0); + void CreateGameServerCluster(Object body = default(Object), int operationIndex = 0); /// /// Create a new game server cluster. @@ -243,7 +243,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse CreateGameServerClusterWithHttpInfo(Object? body = default(Object?), int operationIndex = 0); + ApiResponse CreateGameServerClusterWithHttpInfo(Object body = default(Object), int operationIndex = 0); /// /// Create a new game server cluster. /// @@ -255,7 +255,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - void CreateGameServerClusterV1(Object? body = default(Object?), int operationIndex = 0); + void CreateGameServerClusterV1(Object body = default(Object), int operationIndex = 0); /// /// Create a new game server cluster. @@ -268,7 +268,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - ApiResponse CreateGameServerClusterV1WithHttpInfo(Object? body = default(Object?), int operationIndex = 0); + ApiResponse CreateGameServerClusterV1WithHttpInfo(Object body = default(Object), int operationIndex = 0); /// /// Create a new game server. /// @@ -280,7 +280,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - void CreateGameServerV1(Object? body = default(Object?), int operationIndex = 0); + void CreateGameServerV1(Object body = default(Object), int operationIndex = 0); /// /// Create a new game server. @@ -293,7 +293,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - ApiResponse CreateGameServerV1WithHttpInfo(Object? body = default(Object?), int operationIndex = 0); + ApiResponse CreateGameServerV1WithHttpInfo(Object body = default(Object), int operationIndex = 0); /// /// Create a new group. /// @@ -304,7 +304,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void CreateGroup(Object? body = default(Object?), int operationIndex = 0); + void CreateGroup(Object body = default(Object), int operationIndex = 0); /// /// Create a new group. @@ -316,7 +316,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse CreateGroupWithHttpInfo(Object? body = default(Object?), int operationIndex = 0); + ApiResponse CreateGroupWithHttpInfo(Object body = default(Object), int operationIndex = 0); /// /// Create a new package. /// @@ -331,7 +331,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// Package - Package CreatePackage(string name, System.IO.Stream image, List files, string version, string? description = default(string?), int operationIndex = 0); + Package CreatePackage(string name, System.IO.Stream image, List files, string version, string description = default(string), int operationIndex = 0); /// /// Create a new package. @@ -347,7 +347,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Package - ApiResponse CreatePackageWithHttpInfo(string name, System.IO.Stream image, List files, string version, string? description = default(string?), int operationIndex = 0); + ApiResponse CreatePackageWithHttpInfo(string name, System.IO.Stream image, List files, string version, string description = default(string), int operationIndex = 0); /// /// Create a new token with grant type. /// @@ -355,7 +355,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// TokenResponse - TokenResponse CreateToken(TokenRequest? tokenRequest = default(TokenRequest?), int operationIndex = 0); + TokenResponse CreateToken(TokenRequest tokenRequest = default(TokenRequest), int operationIndex = 0); /// /// Create a new token with grant type. @@ -367,7 +367,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of TokenResponse - ApiResponse CreateTokenWithHttpInfo(TokenRequest? tokenRequest = default(TokenRequest?), int operationIndex = 0); + ApiResponse CreateTokenWithHttpInfo(TokenRequest tokenRequest = default(TokenRequest), int operationIndex = 0); /// /// Create an user. /// @@ -378,7 +378,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void CreateUser(CreateUser? createUser = default(CreateUser?), int operationIndex = 0); + void CreateUser(CreateUser createUser = default(CreateUser), int operationIndex = 0); /// /// Create an user. @@ -390,7 +390,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse CreateUserWithHttpInfo(CreateUser? createUser = default(CreateUser?), int operationIndex = 0); + ApiResponse CreateUserWithHttpInfo(CreateUser createUser = default(CreateUser), int operationIndex = 0); /// /// Delete an oauth2 client. /// @@ -707,7 +707,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// List<ModelClient> - List GetClients(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); + List GetClients(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); /// /// Get a list of oauth2 clients. @@ -721,7 +721,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// ApiResponse of List<ModelClient> - ApiResponse> GetClientsWithHttpInfo(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); + ApiResponse> GetClientsWithHttpInfo(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); /// /// Get current ip address location. /// @@ -1090,7 +1090,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// List<GameServer> - List GetGameServers(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); + List GetGameServers(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); /// /// Get a list of game servers. @@ -1107,7 +1107,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// ApiResponse of List<GameServer> - ApiResponse> GetGameServersWithHttpInfo(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); + ApiResponse> GetGameServersWithHttpInfo(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); /// /// Get a list of game servers from a country. /// @@ -1268,7 +1268,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// List<GameServer> [Obsolete] - List GetGameServersV1(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); + List GetGameServersV1(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); /// /// Get a list of game servers. @@ -1286,7 +1286,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of List<GameServer> [Obsolete] - ApiResponse> GetGameServersV1WithHttpInfo(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); + ApiResponse> GetGameServersV1WithHttpInfo(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); /// /// Get a list of games. /// @@ -1484,7 +1484,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// List<IpAddress> - List GetIpAddresses(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); + List GetIpAddresses(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); /// /// Get a list of ip addresses. @@ -1498,7 +1498,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// ApiResponse of List<IpAddress> - ApiResponse> GetIpAddressesWithHttpInfo(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); + ApiResponse> GetIpAddressesWithHttpInfo(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0); /// /// Get the top 20 leaderboard users. /// @@ -2134,7 +2134,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// HashViewModel - HashViewModel HashArgon2(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0); + HashViewModel HashArgon2(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0); /// /// Hash a string using argon2. @@ -2146,7 +2146,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of HashViewModel - ApiResponse HashArgon2WithHttpInfo(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0); + ApiResponse HashArgon2WithHttpInfo(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0); /// /// Hash a string using bcrypt. /// @@ -2157,7 +2157,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// HashViewModel - HashViewModel HashBcrypt(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0); + HashViewModel HashBcrypt(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0); /// /// Hash a string using bcrypt. @@ -2169,7 +2169,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of HashViewModel - ApiResponse HashBcryptWithHttpInfo(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0); + ApiResponse HashBcryptWithHttpInfo(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0); /// /// Hash a string using md5. /// @@ -2180,7 +2180,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// HashViewModel - HashViewModel HashMd5(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0); + HashViewModel HashMd5(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0); /// /// Hash a string using md5. @@ -2192,7 +2192,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of HashViewModel - ApiResponse HashMd5WithHttpInfo(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0); + ApiResponse HashMd5WithHttpInfo(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0); /// /// Hash a string using sha256. /// @@ -2203,7 +2203,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// HashViewModel - HashViewModel HashSha256(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0); + HashViewModel HashSha256(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0); /// /// Hash a string using sha256. @@ -2215,7 +2215,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of HashViewModel - ApiResponse HashSha256WithHttpInfo(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0); + ApiResponse HashSha256WithHttpInfo(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0); /// /// Introspect a token. /// @@ -2223,7 +2223,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// IntrospectResponse - IntrospectResponse IntrospectToken(IntrospectRequest? introspectRequest = default(IntrospectRequest?), int operationIndex = 0); + IntrospectResponse IntrospectToken(IntrospectRequest introspectRequest = default(IntrospectRequest), int operationIndex = 0); /// /// Introspect a token. @@ -2235,7 +2235,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of IntrospectResponse - ApiResponse IntrospectTokenWithHttpInfo(IntrospectRequest? introspectRequest = default(IntrospectRequest?), int operationIndex = 0); + ApiResponse IntrospectTokenWithHttpInfo(IntrospectRequest introspectRequest = default(IntrospectRequest), int operationIndex = 0); /// /// Revoke a token. /// @@ -2243,7 +2243,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void RevokeToken(RevokeRequest? revokeRequest = default(RevokeRequest?), int operationIndex = 0); + void RevokeToken(RevokeRequest revokeRequest = default(RevokeRequest), int operationIndex = 0); /// /// Revoke a token. @@ -2255,7 +2255,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse RevokeTokenWithHttpInfo(RevokeRequest? revokeRequest = default(RevokeRequest?), int operationIndex = 0); + ApiResponse RevokeTokenWithHttpInfo(RevokeRequest revokeRequest = default(RevokeRequest), int operationIndex = 0); /// /// Advanced search. /// @@ -2266,7 +2266,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// List<Object> - List Search(Search? search = default(Search?), int operationIndex = 0); + List Search(Search search = default(Search), int operationIndex = 0); /// /// Advanced search. @@ -2278,7 +2278,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of List<Object> - ApiResponse> SearchWithHttpInfo(Search? search = default(Search?), int operationIndex = 0); + ApiResponse> SearchWithHttpInfo(Search search = default(Search), int operationIndex = 0); /// /// Update an oauth2 client. /// @@ -2290,7 +2290,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void UpdateClient(string id, Object? body = default(Object?), int operationIndex = 0); + void UpdateClient(string id, Object body = default(Object), int operationIndex = 0); /// /// Update an oauth2 client. @@ -2303,7 +2303,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse UpdateClientWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse UpdateClientWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a game server. /// @@ -2315,7 +2315,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void UpdateGameServer(string id, Object? body = default(Object?), int operationIndex = 0); + void UpdateGameServer(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a game server. @@ -2328,7 +2328,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse UpdateGameServerWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse UpdateGameServerWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a game server cluster. /// @@ -2340,7 +2340,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void UpdateGameServerCluster(string id, Object? body = default(Object?), int operationIndex = 0); + void UpdateGameServerCluster(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a game server cluster. @@ -2353,7 +2353,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse UpdateGameServerClusterWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse UpdateGameServerClusterWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a game server cluster. /// @@ -2366,7 +2366,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - void UpdateGameServerClusterV1(string id, Object? body = default(Object?), int operationIndex = 0); + void UpdateGameServerClusterV1(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a game server cluster. @@ -2380,7 +2380,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - ApiResponse UpdateGameServerClusterV1WithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse UpdateGameServerClusterV1WithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a game server. /// @@ -2393,7 +2393,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - void UpdateGameServerV1(string id, Object? body = default(Object?), int operationIndex = 0); + void UpdateGameServerV1(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a game server. @@ -2407,7 +2407,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - ApiResponse UpdateGameServerV1WithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse UpdateGameServerV1WithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a group. /// @@ -2419,7 +2419,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void UpdateGroup(string id, Object? body = default(Object?), int operationIndex = 0); + void UpdateGroup(string id, Object body = default(Object), int operationIndex = 0); /// /// Update a group. @@ -2432,7 +2432,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse UpdateGroupWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0); + ApiResponse UpdateGroupWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0); /// /// Update an package. /// @@ -2444,7 +2444,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - void UpdatePackage(string id, Package? package = default(Package?), int operationIndex = 0); + void UpdatePackage(string id, Package package = default(Package), int operationIndex = 0); /// /// Update an package. @@ -2457,7 +2457,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - ApiResponse UpdatePackageWithHttpInfo(string id, Package? package = default(Package?), int operationIndex = 0); + ApiResponse UpdatePackageWithHttpInfo(string id, Package package = default(Package), int operationIndex = 0); /// /// Update a user profile. /// @@ -2469,7 +2469,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// Profile - Profile UpdateUserProfile(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0); + Profile UpdateUserProfile(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0); /// /// Update a user profile. @@ -2482,7 +2482,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Profile - ApiResponse UpdateUserProfileWithHttpInfo(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0); + ApiResponse UpdateUserProfileWithHttpInfo(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0); /// /// Update a user profile. /// @@ -2495,7 +2495,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Profile [Obsolete] - Profile UpdateUserProfileV1(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0); + Profile UpdateUserProfileV1(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0); /// /// Update a user profile. @@ -2509,7 +2509,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Profile [Obsolete] - ApiResponse UpdateUserProfileV1WithHttpInfo(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0); + ApiResponse UpdateUserProfileV1WithHttpInfo(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0); #endregion Synchronous Operations } @@ -2530,7 +2530,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of CodeResponse - System.Threading.Tasks.Task AuthorizeAsync(AuthorizeRequest? authorizeRequest = default(AuthorizeRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task AuthorizeAsync(AuthorizeRequest authorizeRequest = default(AuthorizeRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Authorize the client to access the user information. @@ -2543,7 +2543,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (CodeResponse) - System.Threading.Tasks.Task> AuthorizeWithHttpInfoAsync(AuthorizeRequest? authorizeRequest = default(AuthorizeRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> AuthorizeWithHttpInfoAsync(AuthorizeRequest authorizeRequest = default(AuthorizeRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Change the email of a user. /// @@ -2556,7 +2556,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task ChangeEmailAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task ChangeEmailAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Change the email of a user. @@ -2570,7 +2570,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> ChangeEmailWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> ChangeEmailWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Change the password of a user. /// @@ -2583,7 +2583,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task ChangePasswordAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task ChangePasswordAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Change the password of a user. @@ -2597,7 +2597,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> ChangePasswordWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> ChangePasswordWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Claim a game server. /// @@ -2610,7 +2610,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task ClaimGameServerAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task ClaimGameServerAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Claim a game server. @@ -2624,7 +2624,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> ClaimGameServerWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> ClaimGameServerWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Claim a game server. /// @@ -2638,7 +2638,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - System.Threading.Tasks.Task ClaimGameServerV1Async(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task ClaimGameServerV1Async(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Claim a game server. @@ -2653,7 +2653,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - System.Threading.Tasks.Task> ClaimGameServerV1WithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> ClaimGameServerV1WithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Convert a string to base64 or vice versa. /// @@ -2665,7 +2665,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of CryptoViewModel - System.Threading.Tasks.Task ConvertBase64Async(CryptoViewModel? cryptoViewModel = default(CryptoViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task ConvertBase64Async(CryptoViewModel cryptoViewModel = default(CryptoViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Convert a string to base64 or vice versa. @@ -2678,7 +2678,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (CryptoViewModel) - System.Threading.Tasks.Task> ConvertBase64WithHttpInfoAsync(CryptoViewModel? cryptoViewModel = default(CryptoViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> ConvertBase64WithHttpInfoAsync(CryptoViewModel cryptoViewModel = default(CryptoViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create an oauth2 client. /// @@ -2690,7 +2690,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task CreateClientAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateClientAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create an oauth2 client. @@ -2703,7 +2703,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> CreateClientWithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateClientWithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new game server. /// @@ -2715,7 +2715,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task CreateGameServerAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateGameServerAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new game server. @@ -2728,7 +2728,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> CreateGameServerWithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateGameServerWithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new game server cluster. /// @@ -2740,7 +2740,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task CreateGameServerClusterAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateGameServerClusterAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new game server cluster. @@ -2753,7 +2753,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> CreateGameServerClusterWithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateGameServerClusterWithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new game server cluster. /// @@ -2766,7 +2766,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - System.Threading.Tasks.Task CreateGameServerClusterV1Async(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateGameServerClusterV1Async(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new game server cluster. @@ -2780,7 +2780,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - System.Threading.Tasks.Task> CreateGameServerClusterV1WithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateGameServerClusterV1WithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new game server. /// @@ -2793,7 +2793,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - System.Threading.Tasks.Task CreateGameServerV1Async(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateGameServerV1Async(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new game server. @@ -2807,7 +2807,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - System.Threading.Tasks.Task> CreateGameServerV1WithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateGameServerV1WithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new group. /// @@ -2819,7 +2819,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task CreateGroupAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateGroupAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new group. @@ -2832,7 +2832,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> CreateGroupWithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateGroupWithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new package. /// @@ -2848,7 +2848,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of Package - System.Threading.Tasks.Task CreatePackageAsync(string name, System.IO.Stream image, List files, string version, string? description = default(string?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreatePackageAsync(string name, System.IO.Stream image, List files, string version, string description = default(string), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new package. @@ -2865,7 +2865,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (Package) - System.Threading.Tasks.Task> CreatePackageWithHttpInfoAsync(string name, System.IO.Stream image, List files, string version, string? description = default(string?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreatePackageWithHttpInfoAsync(string name, System.IO.Stream image, List files, string version, string description = default(string), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new token with grant type. /// @@ -2877,7 +2877,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of TokenResponse - System.Threading.Tasks.Task CreateTokenAsync(TokenRequest? tokenRequest = default(TokenRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateTokenAsync(TokenRequest tokenRequest = default(TokenRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create a new token with grant type. @@ -2890,7 +2890,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (TokenResponse) - System.Threading.Tasks.Task> CreateTokenWithHttpInfoAsync(TokenRequest? tokenRequest = default(TokenRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateTokenWithHttpInfoAsync(TokenRequest tokenRequest = default(TokenRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create an user. /// @@ -2902,7 +2902,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task CreateUserAsync(CreateUser? createUser = default(CreateUser?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateUserAsync(CreateUser createUser = default(CreateUser), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Create an user. @@ -2915,7 +2915,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> CreateUserWithHttpInfoAsync(CreateUser? createUser = default(CreateUser?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateUserWithHttpInfoAsync(CreateUser createUser = default(CreateUser), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Delete an oauth2 client. /// @@ -3262,7 +3262,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of List<ModelClient> - System.Threading.Tasks.Task> GetClientsAsync(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> GetClientsAsync(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Get a list of oauth2 clients. @@ -3277,7 +3277,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<ModelClient>) - System.Threading.Tasks.Task>> GetClientsWithHttpInfoAsync(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> GetClientsWithHttpInfoAsync(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Get current ip address location. /// @@ -3678,7 +3678,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of List<GameServer> - System.Threading.Tasks.Task> GetGameServersAsync(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> GetGameServersAsync(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Get a list of game servers. @@ -3696,7 +3696,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<GameServer>) - System.Threading.Tasks.Task>> GetGameServersWithHttpInfoAsync(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> GetGameServersWithHttpInfoAsync(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Get a list of game servers from a country. /// @@ -3870,7 +3870,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of List<GameServer> [Obsolete] - System.Threading.Tasks.Task> GetGameServersV1Async(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> GetGameServersV1Async(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Get a list of game servers. @@ -3889,7 +3889,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<GameServer>) [Obsolete] - System.Threading.Tasks.Task>> GetGameServersV1WithHttpInfoAsync(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> GetGameServersV1WithHttpInfoAsync(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Get a list of games. /// @@ -4107,7 +4107,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of List<IpAddress> - System.Threading.Tasks.Task> GetIpAddressesAsync(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> GetIpAddressesAsync(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Get a list of ip addresses. @@ -4122,7 +4122,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<IpAddress>) - System.Threading.Tasks.Task>> GetIpAddressesWithHttpInfoAsync(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> GetIpAddressesWithHttpInfoAsync(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Get the top 20 leaderboard users. /// @@ -4814,7 +4814,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of HashViewModel - System.Threading.Tasks.Task HashArgon2Async(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task HashArgon2Async(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Hash a string using argon2. @@ -4827,7 +4827,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (HashViewModel) - System.Threading.Tasks.Task> HashArgon2WithHttpInfoAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> HashArgon2WithHttpInfoAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Hash a string using bcrypt. /// @@ -4839,7 +4839,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of HashViewModel - System.Threading.Tasks.Task HashBcryptAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task HashBcryptAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Hash a string using bcrypt. @@ -4852,7 +4852,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (HashViewModel) - System.Threading.Tasks.Task> HashBcryptWithHttpInfoAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> HashBcryptWithHttpInfoAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Hash a string using md5. /// @@ -4864,7 +4864,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of HashViewModel - System.Threading.Tasks.Task HashMd5Async(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task HashMd5Async(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Hash a string using md5. @@ -4877,7 +4877,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (HashViewModel) - System.Threading.Tasks.Task> HashMd5WithHttpInfoAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> HashMd5WithHttpInfoAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Hash a string using sha256. /// @@ -4889,7 +4889,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of HashViewModel - System.Threading.Tasks.Task HashSha256Async(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task HashSha256Async(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Hash a string using sha256. @@ -4902,7 +4902,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (HashViewModel) - System.Threading.Tasks.Task> HashSha256WithHttpInfoAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> HashSha256WithHttpInfoAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Introspect a token. /// @@ -4914,7 +4914,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of IntrospectResponse - System.Threading.Tasks.Task IntrospectTokenAsync(IntrospectRequest? introspectRequest = default(IntrospectRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task IntrospectTokenAsync(IntrospectRequest introspectRequest = default(IntrospectRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Introspect a token. @@ -4927,7 +4927,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (IntrospectResponse) - System.Threading.Tasks.Task> IntrospectTokenWithHttpInfoAsync(IntrospectRequest? introspectRequest = default(IntrospectRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> IntrospectTokenWithHttpInfoAsync(IntrospectRequest introspectRequest = default(IntrospectRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Revoke a token. /// @@ -4939,7 +4939,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task RevokeTokenAsync(RevokeRequest? revokeRequest = default(RevokeRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task RevokeTokenAsync(RevokeRequest revokeRequest = default(RevokeRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Revoke a token. @@ -4952,7 +4952,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> RevokeTokenWithHttpInfoAsync(RevokeRequest? revokeRequest = default(RevokeRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> RevokeTokenWithHttpInfoAsync(RevokeRequest revokeRequest = default(RevokeRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Advanced search. /// @@ -4964,7 +4964,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of List<Object> - System.Threading.Tasks.Task> SearchAsync(Search? search = default(Search?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> SearchAsync(Search search = default(Search), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Advanced search. @@ -4977,7 +4977,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<Object>) - System.Threading.Tasks.Task>> SearchWithHttpInfoAsync(Search? search = default(Search?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> SearchWithHttpInfoAsync(Search search = default(Search), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update an oauth2 client. /// @@ -4990,7 +4990,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task UpdateClientAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdateClientAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update an oauth2 client. @@ -5004,7 +5004,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> UpdateClientWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdateClientWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a game server. /// @@ -5017,7 +5017,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task UpdateGameServerAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdateGameServerAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a game server. @@ -5031,7 +5031,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> UpdateGameServerWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdateGameServerWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a game server cluster. /// @@ -5044,7 +5044,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task UpdateGameServerClusterAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdateGameServerClusterAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a game server cluster. @@ -5058,7 +5058,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> UpdateGameServerClusterWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdateGameServerClusterWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a game server cluster. /// @@ -5072,7 +5072,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - System.Threading.Tasks.Task UpdateGameServerClusterV1Async(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdateGameServerClusterV1Async(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a game server cluster. @@ -5087,7 +5087,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - System.Threading.Tasks.Task> UpdateGameServerClusterV1WithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdateGameServerClusterV1WithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a game server. /// @@ -5101,7 +5101,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - System.Threading.Tasks.Task UpdateGameServerV1Async(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdateGameServerV1Async(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a game server. @@ -5116,7 +5116,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - System.Threading.Tasks.Task> UpdateGameServerV1WithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdateGameServerV1WithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a group. /// @@ -5129,7 +5129,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task UpdateGroupAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdateGroupAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a group. @@ -5143,7 +5143,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> UpdateGroupWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdateGroupWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update an package. /// @@ -5156,7 +5156,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - System.Threading.Tasks.Task UpdatePackageAsync(string id, Package? package = default(Package?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdatePackageAsync(string id, Package package = default(Package), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update an package. @@ -5170,7 +5170,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - System.Threading.Tasks.Task> UpdatePackageWithHttpInfoAsync(string id, Package? package = default(Package?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdatePackageWithHttpInfoAsync(string id, Package package = default(Package), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a user profile. /// @@ -5183,7 +5183,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of Profile - System.Threading.Tasks.Task UpdateUserProfileAsync(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdateUserProfileAsync(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a user profile. @@ -5197,7 +5197,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (Profile) - System.Threading.Tasks.Task> UpdateUserProfileWithHttpInfoAsync(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdateUserProfileWithHttpInfoAsync(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a user profile. /// @@ -5211,7 +5211,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of Profile [Obsolete] - System.Threading.Tasks.Task UpdateUserProfileV1Async(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task UpdateUserProfileV1Async(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); /// /// Update a user profile. @@ -5226,7 +5226,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse (Profile) [Obsolete] - System.Threading.Tasks.Task> UpdateUserProfileV1WithHttpInfoAsync(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); + System.Threading.Tasks.Task> UpdateUserProfileV1WithHttpInfoAsync(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)); #endregion Asynchronous Operations } @@ -5354,7 +5354,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// CodeResponse - public CodeResponse Authorize(AuthorizeRequest? authorizeRequest = default(AuthorizeRequest?), int operationIndex = 0) + public CodeResponse Authorize(AuthorizeRequest authorizeRequest = default(AuthorizeRequest), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = AuthorizeWithHttpInfo(authorizeRequest); return localVarResponse.Data; @@ -5367,7 +5367,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of CodeResponse - public Tribufu.Client.ApiResponse AuthorizeWithHttpInfo(AuthorizeRequest? authorizeRequest = default(AuthorizeRequest?), int operationIndex = 0) + public Tribufu.Client.ApiResponse AuthorizeWithHttpInfo(AuthorizeRequest authorizeRequest = default(AuthorizeRequest), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -5426,7 +5426,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of CodeResponse - public async System.Threading.Tasks.Task AuthorizeAsync(AuthorizeRequest? authorizeRequest = default(AuthorizeRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task AuthorizeAsync(AuthorizeRequest authorizeRequest = default(AuthorizeRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await AuthorizeWithHttpInfoAsync(authorizeRequest, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -5440,7 +5440,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (CodeResponse) - public async System.Threading.Tasks.Task> AuthorizeWithHttpInfoAsync(AuthorizeRequest? authorizeRequest = default(AuthorizeRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> AuthorizeWithHttpInfoAsync(AuthorizeRequest authorizeRequest = default(AuthorizeRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -5500,7 +5500,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void ChangeEmail(string id, Object? body = default(Object?), int operationIndex = 0) + public void ChangeEmail(string id, Object body = default(Object), int operationIndex = 0) { ChangeEmailWithHttpInfo(id, body); } @@ -5513,7 +5513,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse ChangeEmailWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse ChangeEmailWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -5582,7 +5582,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task ChangeEmailAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task ChangeEmailAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await ChangeEmailWithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -5596,7 +5596,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> ChangeEmailWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> ChangeEmailWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -5665,7 +5665,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void ChangePassword(string id, Object? body = default(Object?), int operationIndex = 0) + public void ChangePassword(string id, Object body = default(Object), int operationIndex = 0) { ChangePasswordWithHttpInfo(id, body); } @@ -5678,7 +5678,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse ChangePasswordWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse ChangePasswordWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -5747,7 +5747,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task ChangePasswordAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task ChangePasswordAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await ChangePasswordWithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -5761,7 +5761,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> ChangePasswordWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> ChangePasswordWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -5830,7 +5830,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void ClaimGameServer(string id, Object? body = default(Object?), int operationIndex = 0) + public void ClaimGameServer(string id, Object body = default(Object), int operationIndex = 0) { ClaimGameServerWithHttpInfo(id, body); } @@ -5843,7 +5843,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse ClaimGameServerWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse ClaimGameServerWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -5909,7 +5909,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task ClaimGameServerAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task ClaimGameServerAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await ClaimGameServerWithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -5923,7 +5923,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> ClaimGameServerWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> ClaimGameServerWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -5990,7 +5990,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - public void ClaimGameServerV1(string id, Object? body = default(Object?), int operationIndex = 0) + public void ClaimGameServerV1(string id, Object body = default(Object), int operationIndex = 0) { ClaimGameServerV1WithHttpInfo(id, body); } @@ -6004,7 +6004,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - public Tribufu.Client.ApiResponse ClaimGameServerV1WithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse ClaimGameServerV1WithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -6071,7 +6071,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - public async System.Threading.Tasks.Task ClaimGameServerV1Async(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task ClaimGameServerV1Async(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await ClaimGameServerV1WithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -6086,7 +6086,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - public async System.Threading.Tasks.Task> ClaimGameServerV1WithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> ClaimGameServerV1WithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -6151,7 +6151,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// CryptoViewModel - public CryptoViewModel ConvertBase64(CryptoViewModel? cryptoViewModel = default(CryptoViewModel?), int operationIndex = 0) + public CryptoViewModel ConvertBase64(CryptoViewModel cryptoViewModel = default(CryptoViewModel), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = ConvertBase64WithHttpInfo(cryptoViewModel); return localVarResponse.Data; @@ -6164,7 +6164,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of CryptoViewModel - public Tribufu.Client.ApiResponse ConvertBase64WithHttpInfo(CryptoViewModel? cryptoViewModel = default(CryptoViewModel?), int operationIndex = 0) + public Tribufu.Client.ApiResponse ConvertBase64WithHttpInfo(CryptoViewModel cryptoViewModel = default(CryptoViewModel), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6223,7 +6223,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of CryptoViewModel - public async System.Threading.Tasks.Task ConvertBase64Async(CryptoViewModel? cryptoViewModel = default(CryptoViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task ConvertBase64Async(CryptoViewModel cryptoViewModel = default(CryptoViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await ConvertBase64WithHttpInfoAsync(cryptoViewModel, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -6237,7 +6237,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (CryptoViewModel) - public async System.Threading.Tasks.Task> ConvertBase64WithHttpInfoAsync(CryptoViewModel? cryptoViewModel = default(CryptoViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> ConvertBase64WithHttpInfoAsync(CryptoViewModel cryptoViewModel = default(CryptoViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6296,7 +6296,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void CreateClient(Object? body = default(Object?), int operationIndex = 0) + public void CreateClient(Object body = default(Object), int operationIndex = 0) { CreateClientWithHttpInfo(body); } @@ -6308,7 +6308,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse CreateClientWithHttpInfo(Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreateClientWithHttpInfo(Object body = default(Object), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6366,7 +6366,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task CreateClientAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateClientAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await CreateClientWithHttpInfoAsync(body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -6379,7 +6379,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> CreateClientWithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateClientWithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6437,7 +6437,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void CreateGameServer(Object? body = default(Object?), int operationIndex = 0) + public void CreateGameServer(Object body = default(Object), int operationIndex = 0) { CreateGameServerWithHttpInfo(body); } @@ -6449,7 +6449,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse CreateGameServerWithHttpInfo(Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreateGameServerWithHttpInfo(Object body = default(Object), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6507,7 +6507,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task CreateGameServerAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateGameServerAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await CreateGameServerWithHttpInfoAsync(body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -6520,7 +6520,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> CreateGameServerWithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateGameServerWithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6578,7 +6578,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void CreateGameServerCluster(Object? body = default(Object?), int operationIndex = 0) + public void CreateGameServerCluster(Object body = default(Object), int operationIndex = 0) { CreateGameServerClusterWithHttpInfo(body); } @@ -6590,7 +6590,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse CreateGameServerClusterWithHttpInfo(Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreateGameServerClusterWithHttpInfo(Object body = default(Object), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6648,7 +6648,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task CreateGameServerClusterAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateGameServerClusterAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await CreateGameServerClusterWithHttpInfoAsync(body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -6661,7 +6661,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> CreateGameServerClusterWithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateGameServerClusterWithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6720,7 +6720,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - public void CreateGameServerClusterV1(Object? body = default(Object?), int operationIndex = 0) + public void CreateGameServerClusterV1(Object body = default(Object), int operationIndex = 0) { CreateGameServerClusterV1WithHttpInfo(body); } @@ -6733,7 +6733,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - public Tribufu.Client.ApiResponse CreateGameServerClusterV1WithHttpInfo(Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreateGameServerClusterV1WithHttpInfo(Object body = default(Object), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6792,7 +6792,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - public async System.Threading.Tasks.Task CreateGameServerClusterV1Async(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateGameServerClusterV1Async(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await CreateGameServerClusterV1WithHttpInfoAsync(body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -6806,7 +6806,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - public async System.Threading.Tasks.Task> CreateGameServerClusterV1WithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateGameServerClusterV1WithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6865,7 +6865,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - public void CreateGameServerV1(Object? body = default(Object?), int operationIndex = 0) + public void CreateGameServerV1(Object body = default(Object), int operationIndex = 0) { CreateGameServerV1WithHttpInfo(body); } @@ -6878,7 +6878,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - public Tribufu.Client.ApiResponse CreateGameServerV1WithHttpInfo(Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreateGameServerV1WithHttpInfo(Object body = default(Object), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -6937,7 +6937,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - public async System.Threading.Tasks.Task CreateGameServerV1Async(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateGameServerV1Async(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await CreateGameServerV1WithHttpInfoAsync(body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -6951,7 +6951,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - public async System.Threading.Tasks.Task> CreateGameServerV1WithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateGameServerV1WithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -7009,7 +7009,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void CreateGroup(Object? body = default(Object?), int operationIndex = 0) + public void CreateGroup(Object body = default(Object), int operationIndex = 0) { CreateGroupWithHttpInfo(body); } @@ -7021,7 +7021,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse CreateGroupWithHttpInfo(Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreateGroupWithHttpInfo(Object body = default(Object), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -7079,7 +7079,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task CreateGroupAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateGroupAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await CreateGroupWithHttpInfoAsync(body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -7092,7 +7092,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> CreateGroupWithHttpInfoAsync(Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateGroupWithHttpInfoAsync(Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -7154,7 +7154,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// Package - public Package CreatePackage(string name, System.IO.Stream image, List files, string version, string? description = default(string?), int operationIndex = 0) + public Package CreatePackage(string name, System.IO.Stream image, List files, string version, string description = default(string), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = CreatePackageWithHttpInfo(name, image, files, version, description); return localVarResponse.Data; @@ -7171,7 +7171,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Package - public Tribufu.Client.ApiResponse CreatePackageWithHttpInfo(string name, System.IO.Stream image, List files, string version, string? description = default(string?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreatePackageWithHttpInfo(string name, System.IO.Stream image, List files, string version, string description = default(string), int operationIndex = 0) { // verify the required parameter 'name' is set if (name == null) @@ -7268,7 +7268,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of Package - public async System.Threading.Tasks.Task CreatePackageAsync(string name, System.IO.Stream image, List files, string version, string? description = default(string?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreatePackageAsync(string name, System.IO.Stream image, List files, string version, string description = default(string), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await CreatePackageWithHttpInfoAsync(name, image, files, version, description, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -7286,7 +7286,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (Package) - public async System.Threading.Tasks.Task> CreatePackageWithHttpInfoAsync(string name, System.IO.Stream image, List files, string version, string? description = default(string?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreatePackageWithHttpInfoAsync(string name, System.IO.Stream image, List files, string version, string description = default(string), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'name' is set if (name == null) @@ -7379,7 +7379,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// TokenResponse - public TokenResponse CreateToken(TokenRequest? tokenRequest = default(TokenRequest?), int operationIndex = 0) + public TokenResponse CreateToken(TokenRequest tokenRequest = default(TokenRequest), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = CreateTokenWithHttpInfo(tokenRequest); return localVarResponse.Data; @@ -7392,7 +7392,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of TokenResponse - public Tribufu.Client.ApiResponse CreateTokenWithHttpInfo(TokenRequest? tokenRequest = default(TokenRequest?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreateTokenWithHttpInfo(TokenRequest tokenRequest = default(TokenRequest), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -7452,7 +7452,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of TokenResponse - public async System.Threading.Tasks.Task CreateTokenAsync(TokenRequest? tokenRequest = default(TokenRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateTokenAsync(TokenRequest tokenRequest = default(TokenRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await CreateTokenWithHttpInfoAsync(tokenRequest, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -7466,7 +7466,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (TokenResponse) - public async System.Threading.Tasks.Task> CreateTokenWithHttpInfoAsync(TokenRequest? tokenRequest = default(TokenRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateTokenWithHttpInfoAsync(TokenRequest tokenRequest = default(TokenRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -7526,7 +7526,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void CreateUser(CreateUser? createUser = default(CreateUser?), int operationIndex = 0) + public void CreateUser(CreateUser createUser = default(CreateUser), int operationIndex = 0) { CreateUserWithHttpInfo(createUser); } @@ -7538,7 +7538,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse CreateUserWithHttpInfo(CreateUser? createUser = default(CreateUser?), int operationIndex = 0) + public Tribufu.Client.ApiResponse CreateUserWithHttpInfo(CreateUser createUser = default(CreateUser), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -7596,7 +7596,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task CreateUserAsync(CreateUser? createUser = default(CreateUser?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateUserAsync(CreateUser createUser = default(CreateUser), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await CreateUserWithHttpInfoAsync(createUser, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -7609,7 +7609,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> CreateUserWithHttpInfoAsync(CreateUser? createUser = default(CreateUser?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateUserWithHttpInfoAsync(CreateUser createUser = default(CreateUser), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -9664,7 +9664,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// List<ModelClient> - public List GetClients(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) + public List GetClients(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) { Tribufu.Client.ApiResponse> localVarResponse = GetClientsWithHttpInfo(organizationId, page, limit); return localVarResponse.Data; @@ -9679,7 +9679,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// ApiResponse of List<ModelClient> - public Tribufu.Client.ApiResponse> GetClientsWithHttpInfo(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) + public Tribufu.Client.ApiResponse> GetClientsWithHttpInfo(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -9750,7 +9750,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of List<ModelClient> - public async System.Threading.Tasks.Task> GetClientsAsync(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> GetClientsAsync(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse> localVarResponse = await GetClientsWithHttpInfoAsync(organizationId, page, limit, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -9766,7 +9766,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<ModelClient>) - public async System.Threading.Tasks.Task>> GetClientsWithHttpInfoAsync(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> GetClientsWithHttpInfoAsync(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -12136,7 +12136,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// List<GameServer> - public List GetGameServers(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) + public List GetGameServers(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) { Tribufu.Client.ApiResponse> localVarResponse = GetGameServersWithHttpInfo(address, queryPort, country, gameId, page, limit); return localVarResponse.Data; @@ -12154,7 +12154,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// ApiResponse of List<GameServer> - public Tribufu.Client.ApiResponse> GetGameServersWithHttpInfo(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) + public Tribufu.Client.ApiResponse> GetGameServersWithHttpInfo(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -12240,7 +12240,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of List<GameServer> - public async System.Threading.Tasks.Task> GetGameServersAsync(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> GetGameServersAsync(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse> localVarResponse = await GetGameServersWithHttpInfoAsync(address, queryPort, country, gameId, page, limit, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -12259,7 +12259,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<GameServer>) - public async System.Threading.Tasks.Task>> GetGameServersWithHttpInfoAsync(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> GetGameServersWithHttpInfoAsync(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -13264,7 +13264,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// List<GameServer> [Obsolete] - public List GetGameServersV1(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) + public List GetGameServersV1(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) { Tribufu.Client.ApiResponse> localVarResponse = GetGameServersV1WithHttpInfo(address, queryPort, country, gameId, page, limit); return localVarResponse.Data; @@ -13283,7 +13283,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of List<GameServer> [Obsolete] - public Tribufu.Client.ApiResponse> GetGameServersV1WithHttpInfo(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) + public Tribufu.Client.ApiResponse> GetGameServersV1WithHttpInfo(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -13370,7 +13370,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of List<GameServer> [Obsolete] - public async System.Threading.Tasks.Task> GetGameServersV1Async(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> GetGameServersV1Async(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse> localVarResponse = await GetGameServersV1WithHttpInfoAsync(address, queryPort, country, gameId, page, limit, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -13390,7 +13390,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<GameServer>) [Obsolete] - public async System.Threading.Tasks.Task>> GetGameServersV1WithHttpInfoAsync(string? address = default(string?), int? queryPort = default(int?), string? country = default(string?), string? gameId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> GetGameServersV1WithHttpInfoAsync(string address = default(string), int? queryPort = default(int?), string country = default(string), string gameId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -14717,7 +14717,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// List<IpAddress> - public List GetIpAddresses(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) + public List GetIpAddresses(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) { Tribufu.Client.ApiResponse> localVarResponse = GetIpAddressesWithHttpInfo(organizationId, page, limit); return localVarResponse.Data; @@ -14732,7 +14732,7 @@ namespace Tribufu.Api /// The maximum number of items to return per page. Defaults to the defined pagination limit. (optional) /// Index associated with the operation. /// ApiResponse of List<IpAddress> - public Tribufu.Client.ApiResponse> GetIpAddressesWithHttpInfo(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) + public Tribufu.Client.ApiResponse> GetIpAddressesWithHttpInfo(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -14803,7 +14803,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of List<IpAddress> - public async System.Threading.Tasks.Task> GetIpAddressesAsync(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> GetIpAddressesAsync(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse> localVarResponse = await GetIpAddressesWithHttpInfoAsync(organizationId, page, limit, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -14819,7 +14819,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<IpAddress>) - public async System.Threading.Tasks.Task>> GetIpAddressesWithHttpInfoAsync(string? organizationId = default(string?), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> GetIpAddressesWithHttpInfoAsync(string organizationId = default(string), int? page = default(int?), int? limit = default(int?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -18956,7 +18956,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// HashViewModel - public HashViewModel HashArgon2(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0) + public HashViewModel HashArgon2(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = HashArgon2WithHttpInfo(hashViewModel); return localVarResponse.Data; @@ -18969,7 +18969,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of HashViewModel - public Tribufu.Client.ApiResponse HashArgon2WithHttpInfo(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0) + public Tribufu.Client.ApiResponse HashArgon2WithHttpInfo(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19028,7 +19028,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of HashViewModel - public async System.Threading.Tasks.Task HashArgon2Async(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task HashArgon2Async(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await HashArgon2WithHttpInfoAsync(hashViewModel, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -19042,7 +19042,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (HashViewModel) - public async System.Threading.Tasks.Task> HashArgon2WithHttpInfoAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> HashArgon2WithHttpInfoAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19101,7 +19101,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// HashViewModel - public HashViewModel HashBcrypt(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0) + public HashViewModel HashBcrypt(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = HashBcryptWithHttpInfo(hashViewModel); return localVarResponse.Data; @@ -19114,7 +19114,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of HashViewModel - public Tribufu.Client.ApiResponse HashBcryptWithHttpInfo(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0) + public Tribufu.Client.ApiResponse HashBcryptWithHttpInfo(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19173,7 +19173,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of HashViewModel - public async System.Threading.Tasks.Task HashBcryptAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task HashBcryptAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await HashBcryptWithHttpInfoAsync(hashViewModel, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -19187,7 +19187,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (HashViewModel) - public async System.Threading.Tasks.Task> HashBcryptWithHttpInfoAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> HashBcryptWithHttpInfoAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19246,7 +19246,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// HashViewModel - public HashViewModel HashMd5(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0) + public HashViewModel HashMd5(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = HashMd5WithHttpInfo(hashViewModel); return localVarResponse.Data; @@ -19259,7 +19259,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of HashViewModel - public Tribufu.Client.ApiResponse HashMd5WithHttpInfo(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0) + public Tribufu.Client.ApiResponse HashMd5WithHttpInfo(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19318,7 +19318,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of HashViewModel - public async System.Threading.Tasks.Task HashMd5Async(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task HashMd5Async(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await HashMd5WithHttpInfoAsync(hashViewModel, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -19332,7 +19332,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (HashViewModel) - public async System.Threading.Tasks.Task> HashMd5WithHttpInfoAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> HashMd5WithHttpInfoAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19391,7 +19391,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// HashViewModel - public HashViewModel HashSha256(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0) + public HashViewModel HashSha256(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = HashSha256WithHttpInfo(hashViewModel); return localVarResponse.Data; @@ -19404,7 +19404,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of HashViewModel - public Tribufu.Client.ApiResponse HashSha256WithHttpInfo(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0) + public Tribufu.Client.ApiResponse HashSha256WithHttpInfo(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19463,7 +19463,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of HashViewModel - public async System.Threading.Tasks.Task HashSha256Async(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task HashSha256Async(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await HashSha256WithHttpInfoAsync(hashViewModel, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -19477,7 +19477,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (HashViewModel) - public async System.Threading.Tasks.Task> HashSha256WithHttpInfoAsync(HashViewModel? hashViewModel = default(HashViewModel?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> HashSha256WithHttpInfoAsync(HashViewModel hashViewModel = default(HashViewModel), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19536,7 +19536,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// IntrospectResponse - public IntrospectResponse IntrospectToken(IntrospectRequest? introspectRequest = default(IntrospectRequest?), int operationIndex = 0) + public IntrospectResponse IntrospectToken(IntrospectRequest introspectRequest = default(IntrospectRequest), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = IntrospectTokenWithHttpInfo(introspectRequest); return localVarResponse.Data; @@ -19549,7 +19549,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of IntrospectResponse - public Tribufu.Client.ApiResponse IntrospectTokenWithHttpInfo(IntrospectRequest? introspectRequest = default(IntrospectRequest?), int operationIndex = 0) + public Tribufu.Client.ApiResponse IntrospectTokenWithHttpInfo(IntrospectRequest introspectRequest = default(IntrospectRequest), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19609,7 +19609,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of IntrospectResponse - public async System.Threading.Tasks.Task IntrospectTokenAsync(IntrospectRequest? introspectRequest = default(IntrospectRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task IntrospectTokenAsync(IntrospectRequest introspectRequest = default(IntrospectRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await IntrospectTokenWithHttpInfoAsync(introspectRequest, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -19623,7 +19623,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (IntrospectResponse) - public async System.Threading.Tasks.Task> IntrospectTokenWithHttpInfoAsync(IntrospectRequest? introspectRequest = default(IntrospectRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> IntrospectTokenWithHttpInfoAsync(IntrospectRequest introspectRequest = default(IntrospectRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19683,7 +19683,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void RevokeToken(RevokeRequest? revokeRequest = default(RevokeRequest?), int operationIndex = 0) + public void RevokeToken(RevokeRequest revokeRequest = default(RevokeRequest), int operationIndex = 0) { RevokeTokenWithHttpInfo(revokeRequest); } @@ -19695,7 +19695,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse RevokeTokenWithHttpInfo(RevokeRequest? revokeRequest = default(RevokeRequest?), int operationIndex = 0) + public Tribufu.Client.ApiResponse RevokeTokenWithHttpInfo(RevokeRequest revokeRequest = default(RevokeRequest), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19754,7 +19754,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task RevokeTokenAsync(RevokeRequest? revokeRequest = default(RevokeRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task RevokeTokenAsync(RevokeRequest revokeRequest = default(RevokeRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await RevokeTokenWithHttpInfoAsync(revokeRequest, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -19767,7 +19767,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> RevokeTokenWithHttpInfoAsync(RevokeRequest? revokeRequest = default(RevokeRequest?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> RevokeTokenWithHttpInfoAsync(RevokeRequest revokeRequest = default(RevokeRequest), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19826,7 +19826,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// List<Object> - public List Search(Search? search = default(Search?), int operationIndex = 0) + public List Search(Search search = default(Search), int operationIndex = 0) { Tribufu.Client.ApiResponse> localVarResponse = SearchWithHttpInfo(search); return localVarResponse.Data; @@ -19839,7 +19839,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of List<Object> - public Tribufu.Client.ApiResponse> SearchWithHttpInfo(Search? search = default(Search?), int operationIndex = 0) + public Tribufu.Client.ApiResponse> SearchWithHttpInfo(Search search = default(Search), int operationIndex = 0) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19898,7 +19898,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of List<Object> - public async System.Threading.Tasks.Task> SearchAsync(Search? search = default(Search?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> SearchAsync(Search search = default(Search), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse> localVarResponse = await SearchWithHttpInfoAsync(search, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -19912,7 +19912,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (List<Object>) - public async System.Threading.Tasks.Task>> SearchWithHttpInfoAsync(Search? search = default(Search?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> SearchWithHttpInfoAsync(Search search = default(Search), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.RequestOptions localVarRequestOptions = new Tribufu.Client.RequestOptions(); @@ -19972,7 +19972,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void UpdateClient(string id, Object? body = default(Object?), int operationIndex = 0) + public void UpdateClient(string id, Object body = default(Object), int operationIndex = 0) { UpdateClientWithHttpInfo(id, body); } @@ -19985,7 +19985,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse UpdateClientWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdateClientWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -20051,7 +20051,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task UpdateClientAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdateClientAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await UpdateClientWithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -20065,7 +20065,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> UpdateClientWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateClientWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -20131,7 +20131,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void UpdateGameServer(string id, Object? body = default(Object?), int operationIndex = 0) + public void UpdateGameServer(string id, Object body = default(Object), int operationIndex = 0) { UpdateGameServerWithHttpInfo(id, body); } @@ -20144,7 +20144,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse UpdateGameServerWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdateGameServerWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -20210,7 +20210,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task UpdateGameServerAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdateGameServerAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await UpdateGameServerWithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -20224,7 +20224,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> UpdateGameServerWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateGameServerWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -20290,7 +20290,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void UpdateGameServerCluster(string id, Object? body = default(Object?), int operationIndex = 0) + public void UpdateGameServerCluster(string id, Object body = default(Object), int operationIndex = 0) { UpdateGameServerClusterWithHttpInfo(id, body); } @@ -20303,7 +20303,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse UpdateGameServerClusterWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdateGameServerClusterWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -20369,7 +20369,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task UpdateGameServerClusterAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdateGameServerClusterAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await UpdateGameServerClusterWithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -20383,7 +20383,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> UpdateGameServerClusterWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateGameServerClusterWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -20450,7 +20450,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - public void UpdateGameServerClusterV1(string id, Object? body = default(Object?), int operationIndex = 0) + public void UpdateGameServerClusterV1(string id, Object body = default(Object), int operationIndex = 0) { UpdateGameServerClusterV1WithHttpInfo(id, body); } @@ -20464,7 +20464,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - public Tribufu.Client.ApiResponse UpdateGameServerClusterV1WithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdateGameServerClusterV1WithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -20531,7 +20531,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - public async System.Threading.Tasks.Task UpdateGameServerClusterV1Async(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdateGameServerClusterV1Async(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await UpdateGameServerClusterV1WithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -20546,7 +20546,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - public async System.Threading.Tasks.Task> UpdateGameServerClusterV1WithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateGameServerClusterV1WithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -20613,7 +20613,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// [Obsolete] - public void UpdateGameServerV1(string id, Object? body = default(Object?), int operationIndex = 0) + public void UpdateGameServerV1(string id, Object body = default(Object), int operationIndex = 0) { UpdateGameServerV1WithHttpInfo(id, body); } @@ -20627,7 +20627,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Object(void) [Obsolete] - public Tribufu.Client.ApiResponse UpdateGameServerV1WithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdateGameServerV1WithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -20694,7 +20694,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of void [Obsolete] - public async System.Threading.Tasks.Task UpdateGameServerV1Async(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdateGameServerV1Async(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await UpdateGameServerV1WithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -20709,7 +20709,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse [Obsolete] - public async System.Threading.Tasks.Task> UpdateGameServerV1WithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateGameServerV1WithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -20775,7 +20775,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void UpdateGroup(string id, Object? body = default(Object?), int operationIndex = 0) + public void UpdateGroup(string id, Object body = default(Object), int operationIndex = 0) { UpdateGroupWithHttpInfo(id, body); } @@ -20788,7 +20788,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse UpdateGroupWithHttpInfo(string id, Object? body = default(Object?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdateGroupWithHttpInfo(string id, Object body = default(Object), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -20854,7 +20854,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task UpdateGroupAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdateGroupAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await UpdateGroupWithHttpInfoAsync(id, body, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -20868,7 +20868,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> UpdateGroupWithHttpInfoAsync(string id, Object? body = default(Object?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateGroupWithHttpInfoAsync(string id, Object body = default(Object), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -20934,7 +20934,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// - public void UpdatePackage(string id, Package? package = default(Package?), int operationIndex = 0) + public void UpdatePackage(string id, Package package = default(Package), int operationIndex = 0) { UpdatePackageWithHttpInfo(id, package); } @@ -20947,7 +20947,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Object(void) - public Tribufu.Client.ApiResponse UpdatePackageWithHttpInfo(string id, Package? package = default(Package?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdatePackageWithHttpInfo(string id, Package package = default(Package), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -21013,7 +21013,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of void - public async System.Threading.Tasks.Task UpdatePackageAsync(string id, Package? package = default(Package?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdatePackageAsync(string id, Package package = default(Package), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { await UpdatePackageWithHttpInfoAsync(id, package, operationIndex, cancellationToken).ConfigureAwait(false); } @@ -21027,7 +21027,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse - public async System.Threading.Tasks.Task> UpdatePackageWithHttpInfoAsync(string id, Package? package = default(Package?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdatePackageWithHttpInfoAsync(string id, Package package = default(Package), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -21093,7 +21093,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// Profile - public Profile UpdateUserProfile(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0) + public Profile UpdateUserProfile(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = UpdateUserProfileWithHttpInfo(id, updateProfile); return localVarResponse.Data; @@ -21107,7 +21107,7 @@ namespace Tribufu.Api /// (optional) /// Index associated with the operation. /// ApiResponse of Profile - public Tribufu.Client.ApiResponse UpdateUserProfileWithHttpInfo(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdateUserProfileWithHttpInfo(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -21174,7 +21174,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of Profile - public async System.Threading.Tasks.Task UpdateUserProfileAsync(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdateUserProfileAsync(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await UpdateUserProfileWithHttpInfoAsync(id, updateProfile, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -21189,7 +21189,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Cancellation Token to cancel the request. /// Task of ApiResponse (Profile) - public async System.Threading.Tasks.Task> UpdateUserProfileWithHttpInfoAsync(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateUserProfileWithHttpInfoAsync(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -21257,7 +21257,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// Profile [Obsolete] - public Profile UpdateUserProfileV1(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0) + public Profile UpdateUserProfileV1(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0) { Tribufu.Client.ApiResponse localVarResponse = UpdateUserProfileV1WithHttpInfo(id, updateProfile); return localVarResponse.Data; @@ -21272,7 +21272,7 @@ namespace Tribufu.Api /// Index associated with the operation. /// ApiResponse of Profile [Obsolete] - public Tribufu.Client.ApiResponse UpdateUserProfileV1WithHttpInfo(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0) + public Tribufu.Client.ApiResponse UpdateUserProfileV1WithHttpInfo(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0) { // verify the required parameter 'id' is set if (id == null) @@ -21340,7 +21340,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of Profile [Obsolete] - public async System.Threading.Tasks.Task UpdateUserProfileV1Async(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task UpdateUserProfileV1Async(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { Tribufu.Client.ApiResponse localVarResponse = await UpdateUserProfileV1WithHttpInfoAsync(id, updateProfile, operationIndex, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; @@ -21356,7 +21356,7 @@ namespace Tribufu.Api /// Cancellation Token to cancel the request. /// Task of ApiResponse (Profile) [Obsolete] - public async System.Threading.Tasks.Task> UpdateUserProfileV1WithHttpInfoAsync(string id, UpdateProfile? updateProfile = default(UpdateProfile?), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateUserProfileV1WithHttpInfoAsync(string id, UpdateProfile updateProfile = default(UpdateProfile), int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) diff --git a/src/Tribufu/Client/ApiClient.cs b/src/Tribufu/Client/ApiClient.cs index 46fc23e..7b6d9f7 100644 --- a/src/Tribufu/Client/ApiClient.cs +++ b/src/Tribufu/Client/ApiClient.cs @@ -23,6 +23,7 @@ using System.Text; using System.Threading; using System.Text.RegularExpressions; using System.Threading.Tasks; +using System.Web; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using RestSharp; diff --git a/src/Tribufu/Client/ClientUtils.cs b/src/Tribufu/Client/ClientUtils.cs index d114f0b..804327e 100644 --- a/src/Tribufu/Client/ClientUtils.cs +++ b/src/Tribufu/Client/ClientUtils.cs @@ -101,12 +101,6 @@ namespace Tribufu.Client // https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx#Anchor_8 // For example: 2009-06-15T13:45:30.0000000 return dateTimeOffset.ToString((configuration ?? GlobalConfiguration.Instance).DateTimeFormat); - if (obj is DateOnly dateOnly) - // Return a formatted date string - Can be customized with Configuration.DateTimeFormat - // Defaults to an ISO 8601, using the known as a Round-trip date/time pattern ("o") - // https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx#Anchor_8 - // For example: 2009-06-15 - return dateOnly.ToString((configuration ?? GlobalConfiguration.Instance).DateTimeFormat); if (obj is bool boolean) return boolean ? "true" : "false"; if (obj is ICollection collection) { diff --git a/src/Tribufu/Model/Profile.cs b/src/Tribufu/Model/Profile.cs index e076ba5..67a6f51 100644 --- a/src/Tribufu/Model/Profile.cs +++ b/src/Tribufu/Model/Profile.cs @@ -53,7 +53,7 @@ namespace Tribufu.Model /// viewCount. /// created. /// updated. - public Profile(string id = default(string), Guid uuid = default(Guid), string name = default(string), string displayName = default(string), bool verified = default(bool), int level = default(int), double experience = default(double), bool publicBirthday = default(bool), DateOnly? birthday = default(DateOnly?), double points = default(double), string location = default(string), string photoUrl = default(string), string bannerUrl = default(string), DateTime? lastOnline = default(DateTime?), string biography = default(string), int viewCount = default(int), DateTime created = default(DateTime), DateTime? updated = default(DateTime?)) + public Profile(string id = default(string), Guid uuid = default(Guid), string name = default(string), string displayName = default(string), bool verified = default(bool), int level = default(int), double experience = default(double), bool publicBirthday = default(bool), DateTime? birthday = default(DateTime?), double points = default(double), string location = default(string), string photoUrl = default(string), string bannerUrl = default(string), DateTime? lastOnline = default(DateTime?), string biography = default(string), int viewCount = default(int), DateTime created = default(DateTime), DateTime? updated = default(DateTime?)) { this.Id = id; this.Uuid = uuid; @@ -127,7 +127,8 @@ namespace Tribufu.Model /// Gets or Sets Birthday /// [DataMember(Name = "birthday", EmitDefaultValue = true)] - public DateOnly? Birthday { get; set; } + [JsonConverter(typeof(OpenAPIDateConverter))] + public DateTime? Birthday { get; set; } /// /// Gets or Sets Points diff --git a/src/Tribufu/README.md b/src/Tribufu/README.md deleted file mode 100644 index 54c1ab5..0000000 --- a/src/Tribufu/README.md +++ /dev/null @@ -1 +0,0 @@ -# Tribufu diff --git a/src/Tribufu/Tribufu.csproj b/src/Tribufu/Tribufu.csproj index 1f951d1..7337e40 100644 --- a/src/Tribufu/Tribufu.csproj +++ b/src/Tribufu/Tribufu.csproj @@ -9,12 +9,11 @@ true true false - annotations Library - net6.0 + netstandard2.0;net472;net5.0 - + diff --git a/src/Tribufu/TribufuApi.cs b/src/Tribufu/TribufuApi.cs index 2d9f8d3..d8ed7fb 100644 --- a/src/Tribufu/TribufuApi.cs +++ b/src/Tribufu/TribufuApi.cs @@ -25,7 +25,7 @@ namespace Tribufu /// /// Create a instance. /// - public TribufuApi(string? apiKey = null) : base(CreateConfiguration(apiKey)) + public TribufuApi(string apiKey = null) : base(CreateConfiguration(apiKey)) { } @@ -63,9 +63,12 @@ namespace Tribufu /// // Environment variable TRIBUFU_API_KEY must be set /// var api = TribufuApi.FromEnv(); /// - public static TribufuApi? FromEnv(string? prefix = null) + public static TribufuApi FromEnv(string prefix = null) { - prefix ??= "TRIBUFU"; + if (prefix == null) + { + prefix = "TRIBUFU"; + } var apiKey = Environment.GetEnvironmentVariable($"{prefix}_API_KEY"); @@ -110,8 +113,8 @@ namespace Tribufu { var version = GetVersion(); var frameworkDescription = RuntimeInformation.FrameworkDescription.Trim(); - var runtimeIdentifier = RuntimeInformation.RuntimeIdentifier.Trim(); - return $"Tribufu/{version} ({frameworkDescription}; {runtimeIdentifier})"; + //var runtimeIdentifier = RuntimeInformation.RuntimeIdentifier.Trim(); + return $"Tribufu/{version} ({frameworkDescription})"; //; {runtimeIdentifier})"; } /// @@ -151,7 +154,7 @@ namespace Tribufu /// /// Creates a configuration for the Tribufu API client. /// - private static Configuration CreateConfiguration(string? apiKey) + private static Configuration CreateConfiguration(string apiKey) { var config = new Configuration { diff --git a/src/Tribufu/TribufuApiSingleton.cs b/src/Tribufu/TribufuApiSingleton.cs index 1a01583..8eca3d6 100644 --- a/src/Tribufu/TribufuApiSingleton.cs +++ b/src/Tribufu/TribufuApiSingleton.cs @@ -11,14 +11,18 @@ namespace Tribufu /// public static class TribufuApiSingleton { - private static TribufuApi? _instance = null; + private static TribufuApi _instance = null; /// /// Get the singleton instance of . /// public static TribufuApi GetInstance() { - _instance ??= TribufuApi.FromEnvOrDefault(); + if (_instance == null) + { + _instance = TribufuApi.FromEnvOrDefault(); + } + return _instance; }