Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

Commit

Permalink
Convert ACL serviceAccountId from long to string
Browse files Browse the repository at this point in the history
  • Loading branch information
wcarlsen committed Apr 29, 2022
1 parent c85b687 commit ba26e38
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ namespace Tika.RestClient.Features.Acls.Models
{
public class AclCreateDelete
{
public long ServiceAccountId { get; set; }
public string ServiceAccountId { get; set; }
public bool Allow { get; set; }
public string Operation { get; set; }
public string TopicPrefix { get; set; }
public string ConsumerGroupPrefix { get; set; }

public AclCreateDelete() {}

public AclCreateDelete(long serviceAccountId, bool allow, string operation, string topicPrefix = "", string consumerGroupPrefix = "")
public AclCreateDelete(string serviceAccountId, bool allow, string operation, string topicPrefix = "", string consumerGroupPrefix = "")
{
ServiceAccountId = serviceAccountId;
Allow = allow;
Expand Down

0 comments on commit ba26e38

Please sign in to comment.