AiringSchedulesVariables is an interface representing the variables for the AiringSchedulesQuery. It includes optional page, per page, id, media id, episode, airing at, not yet aired, id not, id in, id not in, media id not, media id in, media id not in, episode not, episode in, episode not in, episode greater, episode lesser, airing at greater, airing at lesser, sort, and as html.

interface AiringSchedulesVariables {
    airingAt?: number;
    airingAt_greater?: number;
    airingAt_lesser?: number;
    asHtml?: boolean;
    episode?: number;
    episode_greater?: number;
    episode_in?: number[];
    episode_lesser?: number;
    episode_not?: number;
    episode_not_in?: number[];
    id?: number;
    id_in?: number[];
    id_not?: number;
    id_not_in?: number[];
    mediaId?: number;
    mediaId_in?: number[];
    mediaId_not?: number;
    mediaId_not_in?: number[];
    notYetAired?: boolean;
    page?: number;
    perPage?: number;
    sort?: string[];
}

Properties

airingAt?: number

airingAt is a number representing the airing time of the airing schedule.

airingAt_greater?: number

airingAt_greater is a number representing the minimum airing time.

airingAt_lesser?: number

airingAt_lesser is a number representing the maximum airing time.

asHtml?: boolean

asHtml is a boolean representing whether to return the result as HTML.

episode?: number

episode is a number representing the episode number of the airing schedule.

episode_greater?: number

episode_greater is a number representing the minimum episode number.

episode_in?: number[]

episode_in is an array of numbers representing the episode numbers that should be included.

episode_lesser?: number

episode_lesser is a number representing the maximum episode number.

episode_not?: number

episode_not is a number representing the episode number that should not be included.

episode_not_in?: number[]

episode_not_in is an array of numbers representing the episode numbers that should not be included.

id?: number

id is a number representing the id of the airing schedule.

id_in?: number[]

id_in is an array of numbers representing the ids that should be included.

id_not?: number

id_not is a number representing the id that should not be included.

id_not_in?: number[]

id_not_in is an array of numbers representing the ids that should not be included.

mediaId?: number

mediaId is a number representing the id of the media associated with the airing schedule.

mediaId_in?: number[]

mediaId_in is an array of numbers representing the media ids that should be included.

mediaId_not?: number

mediaId_not is a number representing the media id that should not be included.

mediaId_not_in?: number[]

mediaId_not_in is an array of numbers representing the media ids that should not be included.

notYetAired?: boolean

notYetAired is a boolean representing whether the airing schedule has not yet aired.

page?: number

page is a number representing the page number.

perPage?: number

perPage is a number representing the number of items per page.

sort?: string[]

sort is an array of strings representing the sort order.