Interface PutPearsonBookRequest

The data used to create new Pearson books.

interface PutPearsonBookRequest {
    author: string;
    bookId: string;
    buildAssignmentId: number;
    language: string;
    tags: Record<string, string>;
    tenantId: string;
    year: number;
}

Hierarchy (View Summary)

Properties

author: string

The author that created the book.

bookId: string

The id of the book to create.

buildAssignmentId: number

This is the id of the assignment from which the item will be initialized. There should be a published ATv2 snapshot in this assignment.

language: string

The language the book teaches.

tags: Record<string, string>

A bag of tags for the book, currently unused.

tenantId: string

The id of the tenant in which the book should be created.

year: number

The year the book was released.