package com.sonymusic.dx.dxuiservice.dto;


import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

/**
 * DTO for USM authorization response.
 */
@Data
public class USMAuthorizationResponse {

    @JsonProperty("access_token")
    private String accessToken;

    @JsonProperty("token_type")
    private String tokenType;

    @JsonProperty("expires_in")
    private String expiresIn;

    @JsonProperty("id_token")
    private String idToken;
}
