All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uwetrottmann.tmdb2.services.CreditsService Maven / Gradle / Ivy

The newest version!
package com.uwetrottmann.tmdb2.services;

import com.uwetrottmann.tmdb2.entities.Credit;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;

public interface CreditsService {
    /**
     * Get the basic company information for a specific company id.
     *
     * @param credit_id The Credit ID provided by a Movie/TV Show about an Actor or Crew Member.
     */
    @GET("credit/{id}")
    Call credit(
            @Path("id") String credit_id
    );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy