// Code generated by openapi-nexus. DO NOT EDIT.
//
// Complex Array Structure Test — 1.0.0
// Test case for array of inline objects where each object has nested inline objects
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);
}
}