aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/tenant/BillingReference.java
blob: 52e842ed7adddbe3b07413cff4896ecc4daf7333 (plain) (blame)
1
2
3
4
5
6
7
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.tenant;

import java.time.Instant;

public record BillingReference(String reference, Instant updated) {
}