DeleteTokenRequest constructor
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;
}