DeleteTokenRequest constructor

DeleteTokenRequest({
  1. String? organizationId,
  2. String? projectId,
  3. String? tokenId,
})

Implementation

factory DeleteTokenRequest({
  $core.String? organizationId,
  $core.String? projectId,
  $core.String? tokenId,
}) {
  final result = create();
  if (organizationId != null) result.organizationId = organizationId;
  if (projectId != null) result.projectId = projectId;
  if (tokenId != null) result.tokenId = tokenId;
  return result;
}