Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Edit

Creates an Edit.

This class should be extended by another class and makeEdits should be overridden.

class Promote extends Edit {
constructor(client: JWT, editParams: IEditParams) {
super(client, editParams)
}

public async makeEdits {
// make edits here!
}
}

Hierarchy

Index

Constructors

constructor

Properties

Private client

client: JWT

JWT auth client for AndroidPublisher

Optional editId

editId?: string

ID of the edit.

editParams

editParams: IEditParams

publisher

publisher: Androidpublisher

AndroidPublisher instance

Methods

Private authenticate

  • authenticate(): Promise<void>

Private commitChanges

  • commitChanges(): Promise<GaxiosResponse<Schema$AppEdit>>
  • Returns Promise<GaxiosResponse<Schema$AppEdit>>

Private createEdit

  • createEdit(): Promise<void>

makeEdits

  • makeEdits(): Promise<void>
  • This method should be overridden to make your own changes.

    Returns Promise<void>

run

Generated using TypeDoc