// Code generated by openapi-nexus. DO NOT EDIT.
//
// Test API with DELETE Response Schema — 1.0.0
// Test fixture for DELETE operations with JSON response schemas and type alias request bodies
package com.example.sdk.runtime;
import okhttp3.Request;
public class BearerAuth implements Authenticator {
private final String token;
public BearerAuth(String token) {
this.token = token;
}
@Override
public void authenticate(Request.Builder builder) {
builder.header("Authorization", "Bearer " + token);
}
}